Skip to content

Commit d41b666

Browse files
André DietrichAndré Dietrich
authored andcommitted
fixed multiple languages
1 parent fa65ca4 commit d41b666

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -187,13 +187,15 @@ window.CodeRunner.init("wss://ancient-hollows-41316.herokuapp.com/")
187187
@LIA.r: @LIA.eval(`["main.R"]`, `none`, `Rscript main.R`)
188188
@LIA.r_withShell: @LIA.eval(`["main.R"]`, `none`, `sh -c "cat main.R - | R --interactive"`)
189189
@LIA.racket: @LIA.eval(`["main.rkt"]`, `none`, `racket main.rkt`)
190+
@LIA.rexx: @LIA.eval(`["main.rexx"]`, `none`, `rexx ./main.rexx`)
190191
@LIA.ruby: @LIA.eval(`["main.rb"]`, `none`, `ruby main.rb`)
191192
@LIA.ruby_withShell: @LIA.eval(`["main.rb"]`, `none`, `irb --nomultiline -r ./main.rb`)
192193
@LIA.rust: @LIA.eval(`["main.rs"]`, `rustc main.rs`, `./main`)
193194
@LIA.scala: @LIA.eval(`["@0.scala"]`, `scalac @0.scala`, `scala @0`)
194195
@LIA.scheme: @LIA.eval(`["main.scm"]`, `none`, `guile --no-auto-compile main.scm`)
195196
@LIA.selectscript: @LIA.eval(`["main.s2"]`, `none`, `S2c -x main.s2`)
196197
@LIA.smalltalk: @LIA.eval(`["main.st"]`, `none`, `gst main.st`)
198+
@LIA.solidity: @LIA.eval(`["@0.sol"]`, `solcjs --abi @0.sol`, `python3 -mjson.tool @0_sol_@0.abi`)
197199
@LIA.tcl: @LIA.eval(`["main.tcl"]`, `none`, `tclsh main.tcl`)
198200
@LIA.v: @LIA.eval(`["main.v"]`, `v main.v`, `./main`)
199201
@LIA.v_withShell: @LIA.eval(`["main.v"]`, `none`, `sh -c "cat main.v - | v repl"`)
@@ -1662,7 +1664,7 @@ For more information, you can visit the [REXX programming language Wikipedia pag
16621664
/* REXX program to display "Hello, world!" */
16631665
say "Hello, world!"
16641666
```
1665-
@LIA.eval(`["hello.rexx"]`, `none`, `rexx hello.rexx`)
1667+
@LIA.rexx
16661668

16671669
### Ruby : `@LIA.ruby`
16681670

@@ -1856,7 +1858,7 @@ contract HelloWorld {
18561858
}
18571859
}
18581860
```
1859-
@LIA.eval(`["HelloWorld.sol"]`, `none`, `solcjs --abi HelloWorld.sol`)
1861+
@LIA.solidity(HelloWorld)
18601862

18611863
### Scala : `@LIA.scala`
18621864

@@ -2021,10 +2023,8 @@ For more information, you can visit the [Zig programming language Wikipedia page
20212023
```zig
20222024
const std = @import("std");
20232025
2024-
pub fn main() void {
2025-
std.io.getStdOut().writeAll(
2026-
"Hello World!",
2027-
) catch unreachable;
2026+
pub fn main() !void {
2027+
try std.io.getStdOut().writeAll("Hello World!\n");
20282028
}
20292029
```
20302030
@LIA.zig

0 commit comments

Comments
 (0)