Keeping track of versions is too much work

This commit is contained in:
1computer1 2019-05-14 20:53:42 -04:00
parent b0f9fef546
commit aeeb437ab6

View file

@ -54,34 +54,34 @@ console.log(new Foo().bar);
One of the following language codes is set in `lang`. One of the following language codes is set in `lang`.
Options are optionally set in `options`, which is a semicolon-delimited list of `flag` or `flag=value`. Options are optionally set in `options`, which is a semicolon-delimited list of `flag` or `flag=value`.
- `bash` Bash (Bash 5.0.2) - `bash` Bash
- `c` C (GCC 8.2.0) - `c` C (GCC)
- `clj` Clojure (Clojure 1.10) - `clj` Clojure
- `cpp` C++ (G++ 8.2.0) - `cpp` C++ (G++)
- `cs` C# (Mono 5.18.0) - `cs` C# (Mono)
- `e` evaluates a single expression instead of a module - `e` evaluates a single expression instead of a module
- `elixir` Elixir (Elixir 1.8.1) - `elixir` Elixir
- `fs` F# (FSharp 4.5) - `fs` F#
- `go` Go (Go 1.12) - `go` Go
- `hs` Haskell (GHC 8.4.3) - `hs` Haskell (GHC)
- `e` evaluates a single expression instead of a module - `e` evaluates a single expression instead of a module
- `java` Java (OpenJDK 13) - `java` Java (OpenJDK)
- `js` JavaScript (Node 11.11.0) - `js` JavaScript (Node)
- `harmony` enables harmony features (`--harmony` on node) - `harmony` enables harmony features (`--harmony` on node)
- `e` prints the result of evaluating the code - `e` prints the result of evaluating the code
- `julia` Julia (Julia 1.1.0) - `julia` Julia
- `e` prints the result of evaluating the code - `e` prints the result of evaluating the code
- `lisp` Racket (Racket 7.2) - `lisp` Racket
- `lua` Lua (Lua 5.3) - `lua` Lua
- `ocaml` OCaml (OCaml 4.0.6) - `ocaml` OCaml
- `pas` Pascal (FPC 3.0.4) - `pas` Pascal (FPC)
- `php` PHP (PHP 7.3.3) - `php` PHP
- `pl` Perl (Perl 5.28.1) - `pl` Perl5
- `prolog` Prolog (SWI-Prolog 8.1.2) - `prolog` Prolog (SWI-Prolog)
- `py` Python (CPython 3.7.2, CPython 2.7.16) - `py` Python (CPython)
- `2` runs Python 2 instead of Python 3 - `2` runs Python 2 instead of Python 3
- `rb` Ruby (Ruby 2.6.2) - `rb` Ruby
- `rs` Rust (Rust 1.33.0) - `rs` Rust
## How it Works ## How it Works