#!/bin/bash # # This file performs a test of the autojudge system. It can run whatever you feel important to test the autojudge # and the script files that are included in the problem package mkdir -p testdir cd testdir cat > test.kt <<'EOF' import java.util.* fun main(args: Array) { var scanner = Scanner(System.`in`) val nTests = scanner.nextInt() for (i in 1..nTests) { System.`out`.format("%s%n", scanner.next()) } } EOF cat > test.in <