ID Name Runtime Info
ADA Ada gnatmake 10.2.1
AWK AWK awk 1.3.4
BF Brain**** bf 1.33.7

Classical brain**** with as many byte-sized cells as there are bytes in the memory limit.

C C gcc 10
C11 C11 gcc11 10
CBL COBOL cobc 4.0
Clang Clang clang 11.0.1
Clang++ Clang++ clang++ 11.0.1
COFFEE CoffeeScript coffee 1.12.8, node 12.21.0
C++03 C++03 g++ 10
C++11 C++11 g++11 10
C++14 C++14 g++14 10
C++17 C++17 g++17 10
D D dmd 2.96.0
DART Dart dart 2.12.2
F95 Fortran gfortran 10
FORTH Forth gforth 0.7.3

Gforth 0.7.2.

Submissions ran as gforth <source>.fs -e bye.

GAS32 Assembly (x86) as_x86 2.35.2, ld_x86 2.35.2
GAS64 Assembly (x64) as_x64 2.35.2, ld_x64 2.35.2
GO Go go 1.15.9
HASK Haskell ghc 8.8.4
ICK INTERCAL ick
JAVA8 Java 8 javac 1.8.0
KOTLIN Kotlin kotlinc 64, java 15.0.2
LUA Lua lua 5.3.3
C# C# csc 6.12.0.122, mono 6.12.0.122
F# F# fsharpc 11.0.0.0, mono 6.12.0.122
VB Visual Basic vbnc 0.0.0.5943, mono 6.12.0.122
NASM NASM nasm 2.15.5, ld_x86 2.35.2
NASM64 NASM64 nasm 2.15.5, ld_x64 2.35.2
OCAML OCaml ocaml 4.12.0
PAS Pascal fpc 3.2.0
PERL Perl perl 5.32.1
PHP PHP php 7.4.16
PIKE Pike pike 8.0
PRO Prolog swipl 8.2.4
PY2 Python 2 python 2.7.18
PY3 Python 3 python3 3.9.2
PYPY2 PyPy 2 pypy 7.3.4, implementing python 2.7.18
PYPY3 PyPy 3 pypy3 7.3.4, implementing python 3.7.10
RKT Racket racket 7.9
RUBY2 Ruby 2 ruby 2.7.2
RUST Rust rustc 1.51.0
Lisp Lisp sbcl 2.1.1
SCALA Scala scalac 2.11.12, java 15.0.2
SCM Scheme csc 5.2.0
SED Sed sed 4.7
SWIFT Swift swiftc 5.3.3
TCL TCL tclsh 8.6
TEXT Text cat 8.32
TUR Turing tprolog
V8JS V8 JavaScript v8dmoj 8.1.307.31

This is a custom version of V8 that adds six functions in order to perform I/O and aid in online judging.

  • print(...): similar to Python's print, prints all argument separated by space followed by new line.
  • flush(): flushes stdout, ensuring everything output by print() immediately shows up.
  • gets(): similar to the Ruby equivalent, returns one line of input from stdin.
  • read(bytes): read bytes bytes from stdin as an ArrayBuffer.
  • write(buffer): write a typed array, ArrayBuffer, or a view of ArrayBuffer to stdout.
  • quit(code): exits the program with code.
  • You can also assign to the global variable autoflush to control whether print() flushes.