├── Dockerfile ├── LICENSE ├── README.md ├── bin ├── debug-tests └── run-tests ├── extra ├── Dockerfile ├── bin │ └── update │ │ ├── bosque │ │ ├── c3 │ │ └── nim ├── cron │ ├── bosque │ ├── c3 │ └── nim ├── docker-entrypoint.sh ├── files │ ├── c#-dotnet │ │ └── Main.csproj │ └── nunit │ │ └── Test.csproj └── tests │ ├── bosque │ ├── lang.properties │ └── main.bsq │ ├── c#-dotnet │ ├── Main.cs │ └── lang.properties │ ├── c#-mono │ ├── Main.cs │ └── lang.properties │ ├── c3 │ ├── lang.properties │ └── main.c3 │ ├── clang++-10 │ ├── lang.properties │ └── main.cpp │ ├── clang++-9 │ ├── lang.properties │ └── main.cpp │ ├── clang-10 │ ├── lang.properties │ └── main.c │ ├── clang-9 │ ├── lang.properties │ └── main.c │ ├── f#-dotnet │ ├── lang.properties │ └── script.fsx │ ├── gtest-clang-10 │ ├── lang.properties │ └── main.cpp │ ├── gtest-gcc │ ├── lang.properties │ └── main.cpp │ ├── java-jdk14 │ ├── Main.java │ └── lang.properties │ ├── junit │ ├── MainTest.java │ └── lang.properties │ ├── mpicc │ ├── lang.properties │ └── main.c │ ├── mpicxx │ ├── lang.properties │ └── main.cpp │ ├── mpipy │ ├── lang.properties │ └── script.py │ ├── nim │ ├── lang.properties │ └── main.nim │ ├── nunit │ ├── Test.cs │ └── lang.properties │ ├── python3-for-ml │ ├── lang.properties │ └── script.py │ ├── run │ └── vb-mono │ ├── Main.vb │ └── lang.properties ├── generate_json.py ├── slim └── Dockerfile └── tests ├── bash ├── lang.properties └── script.sh ├── clang++ ├── lang.properties └── main.cpp ├── clang ├── lang.properties └── main.c ├── clojure ├── lang.properties └── main.clj ├── d ├── lang.properties └── main.d ├── elixir ├── lang.properties └── script.exs ├── erlang ├── lang.properties └── main.erl ├── exe ├── a.out └── lang.properties ├── f# ├── lang.properties └── script.fsx ├── fbc ├── lang.properties └── main.bas ├── fpc ├── lang.properties └── main.pas ├── g++ ├── lang.properties └── main.cpp ├── gcc ├── lang.properties └── main.c ├── gfortran ├── lang.properties └── main.f90 ├── ghc ├── lang.properties └── main.hs ├── gnucobol ├── lang.properties └── main.cob ├── go ├── lang.properties └── main.go ├── gprolog ├── lang.properties └── main.pro ├── groovy ├── lang.properties └── script.groovy ├── java ├── Main.java └── lang.properties ├── julia ├── .skip ├── lang.properties └── script.jl ├── kotlin ├── Main.kt └── lang.properties ├── lua ├── lang.properties └── script.lua ├── mono ├── Main.cs └── lang.properties ├── nasm ├── lang.properties └── main.asm ├── node ├── lang.properties └── script.js ├── objective-c ├── lang.properties └── main.m ├── ocaml ├── lang.properties └── main.ml ├── octave ├── lang.properties └── script.m ├── perl ├── lang.properties └── script.pl ├── php ├── lang.properties └── script.php ├── python ├── lang.properties ├── script-2.7.17.py └── script-3.8.1.py ├── r ├── lang.properties └── script.r ├── ruby ├── lang.properties └── script.rb ├── run ├── rust ├── lang.properties └── main.rs ├── sbcl ├── lang.properties └── script.lisp ├── scala ├── Main.scala └── lang.properties ├── sqlite ├── db.sqlite ├── lang.properties └── script.sql ├── swift ├── Main.swift └── lang.properties ├── text ├── lang.properties └── text.txt ├── typescript ├── lang.properties └── script.ts └── vb ├── Main.vb └── lang.properties /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/README.md -------------------------------------------------------------------------------- /bin/debug-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/bin/debug-tests -------------------------------------------------------------------------------- /bin/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/bin/run-tests -------------------------------------------------------------------------------- /extra/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/Dockerfile -------------------------------------------------------------------------------- /extra/bin/update/bosque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/bin/update/bosque -------------------------------------------------------------------------------- /extra/bin/update/c3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/bin/update/c3 -------------------------------------------------------------------------------- /extra/bin/update/nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/bin/update/nim -------------------------------------------------------------------------------- /extra/cron/bosque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/cron/bosque -------------------------------------------------------------------------------- /extra/cron/c3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/cron/c3 -------------------------------------------------------------------------------- /extra/cron/nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/cron/nim -------------------------------------------------------------------------------- /extra/docker-entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cron 3 | exec "$@" -------------------------------------------------------------------------------- /extra/files/c#-dotnet/Main.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/files/c#-dotnet/Main.csproj -------------------------------------------------------------------------------- /extra/files/nunit/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/files/nunit/Test.csproj -------------------------------------------------------------------------------- /extra/tests/bosque/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/bosque/lang.properties -------------------------------------------------------------------------------- /extra/tests/bosque/main.bsq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/bosque/main.bsq -------------------------------------------------------------------------------- /extra/tests/c#-dotnet/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/c#-dotnet/Main.cs -------------------------------------------------------------------------------- /extra/tests/c#-dotnet/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/c#-dotnet/lang.properties -------------------------------------------------------------------------------- /extra/tests/c#-mono/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/c#-mono/Main.cs -------------------------------------------------------------------------------- /extra/tests/c#-mono/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/c#-mono/lang.properties -------------------------------------------------------------------------------- /extra/tests/c3/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/c3/lang.properties -------------------------------------------------------------------------------- /extra/tests/c3/main.c3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/c3/main.c3 -------------------------------------------------------------------------------- /extra/tests/clang++-10/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/clang++-10/lang.properties -------------------------------------------------------------------------------- /extra/tests/clang++-10/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/clang++-10/main.cpp -------------------------------------------------------------------------------- /extra/tests/clang++-9/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/clang++-9/lang.properties -------------------------------------------------------------------------------- /extra/tests/clang++-9/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/clang++-9/main.cpp -------------------------------------------------------------------------------- /extra/tests/clang-10/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/clang-10/lang.properties -------------------------------------------------------------------------------- /extra/tests/clang-10/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/clang-10/main.c -------------------------------------------------------------------------------- /extra/tests/clang-9/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/clang-9/lang.properties -------------------------------------------------------------------------------- /extra/tests/clang-9/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/clang-9/main.c -------------------------------------------------------------------------------- /extra/tests/f#-dotnet/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/f#-dotnet/lang.properties -------------------------------------------------------------------------------- /extra/tests/f#-dotnet/script.fsx: -------------------------------------------------------------------------------- 1 | printfn "hello, world" -------------------------------------------------------------------------------- /extra/tests/gtest-clang-10/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/gtest-clang-10/lang.properties -------------------------------------------------------------------------------- /extra/tests/gtest-clang-10/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/gtest-clang-10/main.cpp -------------------------------------------------------------------------------- /extra/tests/gtest-gcc/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/gtest-gcc/lang.properties -------------------------------------------------------------------------------- /extra/tests/gtest-gcc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/gtest-gcc/main.cpp -------------------------------------------------------------------------------- /extra/tests/java-jdk14/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/java-jdk14/Main.java -------------------------------------------------------------------------------- /extra/tests/java-jdk14/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/java-jdk14/lang.properties -------------------------------------------------------------------------------- /extra/tests/junit/MainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/junit/MainTest.java -------------------------------------------------------------------------------- /extra/tests/junit/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/junit/lang.properties -------------------------------------------------------------------------------- /extra/tests/mpicc/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/mpicc/lang.properties -------------------------------------------------------------------------------- /extra/tests/mpicc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/mpicc/main.c -------------------------------------------------------------------------------- /extra/tests/mpicxx/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/mpicxx/lang.properties -------------------------------------------------------------------------------- /extra/tests/mpicxx/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/mpicxx/main.cpp -------------------------------------------------------------------------------- /extra/tests/mpipy/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/mpipy/lang.properties -------------------------------------------------------------------------------- /extra/tests/mpipy/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/mpipy/script.py -------------------------------------------------------------------------------- /extra/tests/nim/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/nim/lang.properties -------------------------------------------------------------------------------- /extra/tests/nim/main.nim: -------------------------------------------------------------------------------- 1 | echo "hello, world" -------------------------------------------------------------------------------- /extra/tests/nunit/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/nunit/Test.cs -------------------------------------------------------------------------------- /extra/tests/nunit/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/nunit/lang.properties -------------------------------------------------------------------------------- /extra/tests/python3-for-ml/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/python3-for-ml/lang.properties -------------------------------------------------------------------------------- /extra/tests/python3-for-ml/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/python3-for-ml/script.py -------------------------------------------------------------------------------- /extra/tests/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/run -------------------------------------------------------------------------------- /extra/tests/vb-mono/Main.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/vb-mono/Main.vb -------------------------------------------------------------------------------- /extra/tests/vb-mono/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/extra/tests/vb-mono/lang.properties -------------------------------------------------------------------------------- /generate_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/generate_json.py -------------------------------------------------------------------------------- /slim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/slim/Dockerfile -------------------------------------------------------------------------------- /tests/bash/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/bash/lang.properties -------------------------------------------------------------------------------- /tests/bash/script.sh: -------------------------------------------------------------------------------- 1 | read name 2 | echo hello, $name -------------------------------------------------------------------------------- /tests/clang++/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/clang++/lang.properties -------------------------------------------------------------------------------- /tests/clang++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/clang++/main.cpp -------------------------------------------------------------------------------- /tests/clang/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/clang/lang.properties -------------------------------------------------------------------------------- /tests/clang/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/clang/main.c -------------------------------------------------------------------------------- /tests/clojure/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/clojure/lang.properties -------------------------------------------------------------------------------- /tests/clojure/main.clj: -------------------------------------------------------------------------------- 1 | (println "hello, world") -------------------------------------------------------------------------------- /tests/d/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/d/lang.properties -------------------------------------------------------------------------------- /tests/d/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/d/main.d -------------------------------------------------------------------------------- /tests/elixir/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/elixir/lang.properties -------------------------------------------------------------------------------- /tests/elixir/script.exs: -------------------------------------------------------------------------------- 1 | IO.puts "hello, world" 2 | -------------------------------------------------------------------------------- /tests/erlang/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/erlang/lang.properties -------------------------------------------------------------------------------- /tests/erlang/main.erl: -------------------------------------------------------------------------------- 1 | 2 | main(_) -> 3 | io:fwrite("hello, world\n"). -------------------------------------------------------------------------------- /tests/exe/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/exe/a.out -------------------------------------------------------------------------------- /tests/exe/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/exe/lang.properties -------------------------------------------------------------------------------- /tests/f#/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/f#/lang.properties -------------------------------------------------------------------------------- /tests/f#/script.fsx: -------------------------------------------------------------------------------- 1 | printfn "hello, world" -------------------------------------------------------------------------------- /tests/fbc/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/fbc/lang.properties -------------------------------------------------------------------------------- /tests/fbc/main.bas: -------------------------------------------------------------------------------- 1 | PRINT "hello, world" 2 | -------------------------------------------------------------------------------- /tests/fpc/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/fpc/lang.properties -------------------------------------------------------------------------------- /tests/fpc/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/fpc/main.pas -------------------------------------------------------------------------------- /tests/g++/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/g++/lang.properties -------------------------------------------------------------------------------- /tests/g++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/g++/main.cpp -------------------------------------------------------------------------------- /tests/gcc/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/gcc/lang.properties -------------------------------------------------------------------------------- /tests/gcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/gcc/main.c -------------------------------------------------------------------------------- /tests/gfortran/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/gfortran/lang.properties -------------------------------------------------------------------------------- /tests/gfortran/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/gfortran/main.f90 -------------------------------------------------------------------------------- /tests/ghc/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/ghc/lang.properties -------------------------------------------------------------------------------- /tests/ghc/main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/ghc/main.hs -------------------------------------------------------------------------------- /tests/gnucobol/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/gnucobol/lang.properties -------------------------------------------------------------------------------- /tests/gnucobol/main.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/gnucobol/main.cob -------------------------------------------------------------------------------- /tests/go/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/go/lang.properties -------------------------------------------------------------------------------- /tests/go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/go/main.go -------------------------------------------------------------------------------- /tests/gprolog/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/gprolog/lang.properties -------------------------------------------------------------------------------- /tests/gprolog/main.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/gprolog/main.pro -------------------------------------------------------------------------------- /tests/groovy/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/groovy/lang.properties -------------------------------------------------------------------------------- /tests/groovy/script.groovy: -------------------------------------------------------------------------------- 1 | println "hello, world" -------------------------------------------------------------------------------- /tests/java/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/java/Main.java -------------------------------------------------------------------------------- /tests/java/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/java/lang.properties -------------------------------------------------------------------------------- /tests/julia/.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/julia/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/julia/lang.properties -------------------------------------------------------------------------------- /tests/julia/script.jl: -------------------------------------------------------------------------------- 1 | println("hello, world") -------------------------------------------------------------------------------- /tests/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/kotlin/Main.kt -------------------------------------------------------------------------------- /tests/kotlin/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/kotlin/lang.properties -------------------------------------------------------------------------------- /tests/lua/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/lua/lang.properties -------------------------------------------------------------------------------- /tests/lua/script.lua: -------------------------------------------------------------------------------- 1 | print("hello, world") -------------------------------------------------------------------------------- /tests/mono/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/mono/Main.cs -------------------------------------------------------------------------------- /tests/mono/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/mono/lang.properties -------------------------------------------------------------------------------- /tests/nasm/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/nasm/lang.properties -------------------------------------------------------------------------------- /tests/nasm/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/nasm/main.asm -------------------------------------------------------------------------------- /tests/node/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/node/lang.properties -------------------------------------------------------------------------------- /tests/node/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/node/script.js -------------------------------------------------------------------------------- /tests/objective-c/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/objective-c/lang.properties -------------------------------------------------------------------------------- /tests/objective-c/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/objective-c/main.m -------------------------------------------------------------------------------- /tests/ocaml/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/ocaml/lang.properties -------------------------------------------------------------------------------- /tests/ocaml/main.ml: -------------------------------------------------------------------------------- 1 | print_endline "hello, world" -------------------------------------------------------------------------------- /tests/octave/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/octave/lang.properties -------------------------------------------------------------------------------- /tests/octave/script.m: -------------------------------------------------------------------------------- 1 | name = input("", "s"); 2 | printf("hello, %s\n", name); -------------------------------------------------------------------------------- /tests/perl/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/perl/lang.properties -------------------------------------------------------------------------------- /tests/perl/script.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/perl/script.pl -------------------------------------------------------------------------------- /tests/php/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/php/lang.properties -------------------------------------------------------------------------------- /tests/php/script.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/python/lang.properties -------------------------------------------------------------------------------- /tests/python/script-2.7.17.py: -------------------------------------------------------------------------------- 1 | print "hello, " + raw_input() -------------------------------------------------------------------------------- /tests/python/script-3.8.1.py: -------------------------------------------------------------------------------- 1 | print(f"hello, {input()}") -------------------------------------------------------------------------------- /tests/r/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/r/lang.properties -------------------------------------------------------------------------------- /tests/r/script.r: -------------------------------------------------------------------------------- 1 | cat("hello, world\n") -------------------------------------------------------------------------------- /tests/ruby/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/ruby/lang.properties -------------------------------------------------------------------------------- /tests/ruby/script.rb: -------------------------------------------------------------------------------- 1 | puts("hello, #{gets.chomp}") -------------------------------------------------------------------------------- /tests/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/run -------------------------------------------------------------------------------- /tests/rust/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/rust/lang.properties -------------------------------------------------------------------------------- /tests/rust/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("hello, world"); 3 | } -------------------------------------------------------------------------------- /tests/sbcl/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/sbcl/lang.properties -------------------------------------------------------------------------------- /tests/sbcl/script.lisp: -------------------------------------------------------------------------------- 1 | (write-line "hello, world") -------------------------------------------------------------------------------- /tests/scala/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/scala/Main.scala -------------------------------------------------------------------------------- /tests/scala/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/scala/lang.properties -------------------------------------------------------------------------------- /tests/sqlite/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/sqlite/db.sqlite -------------------------------------------------------------------------------- /tests/sqlite/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/sqlite/lang.properties -------------------------------------------------------------------------------- /tests/sqlite/script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/sqlite/script.sql -------------------------------------------------------------------------------- /tests/swift/Main.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | let name = readLine() 3 | print("hello, \(name!)") -------------------------------------------------------------------------------- /tests/swift/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/swift/lang.properties -------------------------------------------------------------------------------- /tests/text/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/text/lang.properties -------------------------------------------------------------------------------- /tests/text/text.txt: -------------------------------------------------------------------------------- 1 | hello, world 2 | -------------------------------------------------------------------------------- /tests/typescript/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/typescript/lang.properties -------------------------------------------------------------------------------- /tests/typescript/script.ts: -------------------------------------------------------------------------------- 1 | console.log("hello, world"); 2 | -------------------------------------------------------------------------------- /tests/vb/Main.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/vb/Main.vb -------------------------------------------------------------------------------- /tests/vb/lang.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judge0/compilers/HEAD/tests/vb/lang.properties --------------------------------------------------------------------------------