Merge branch 'master' of github.com:engineer-man/piston
This commit is contained in:
commit
c011f212d4
|
@ -0,0 +1,5 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
curl -L "https://rakudo.org/dl/rakudo/rakudo-moar-2021.05-01-linux-x86_64-gcc.tar.gz" -o raku.tar.xz
|
||||||
|
tar xf raku.tar.xz --strip-components=1
|
||||||
|
rm raku.tar.xz
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Path to raku binary
|
||||||
|
export PATH=$PWD/bin:$PATH
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"language": "raku",
|
||||||
|
"version": "6.100.0",
|
||||||
|
"aliases": ["raku", "rakudo", "perl6", "p6", "pl6"]
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
raku "$@"
|
|
@ -0,0 +1 @@
|
||||||
|
say "OK"
|
|
@ -7,4 +7,4 @@ curl -L "https://ziglang.org/download/0.7.1/zig-linux-x86_64-0.7.1.tar.xz" -o zi
|
||||||
tar xf zig.tar.xz --strip-components=1
|
tar xf zig.tar.xz --strip-components=1
|
||||||
rm zig.tar.xz
|
rm zig.tar.xz
|
||||||
|
|
||||||
cd ../
|
cd ../
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
mkdir -p bin
|
||||||
|
cd bin/
|
||||||
|
|
||||||
|
curl -L "https://ziglang.org/download/0.8.0/zig-linux-x86_64-0.8.0.tar.xz" -o zig.tar.xz
|
||||||
|
tar xf zig.tar.xz --strip-components=1
|
||||||
|
rm zig.tar.xz
|
||||||
|
|
||||||
|
cd ../
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# optimizing for small programs
|
||||||
|
rename 's/$/\.zig/' "$@" # Add .zig extension
|
||||||
|
|
||||||
|
zig build-exe -O ReleaseSafe --color off --cache-dir . --global-cache-dir . --name out *.zig
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# compiler path
|
||||||
|
export PATH=$PWD/bin:$PATH
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"language": "zig",
|
||||||
|
"version": "0.8.0",
|
||||||
|
"aliases": ["zig"]
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
shift # Filename is only used in compile step, so we can take it out here
|
||||||
|
./out "$@"
|
|
@ -0,0 +1,6 @@
|
||||||
|
const std = @import("std");
|
||||||
|
|
||||||
|
pub fn main() !void {
|
||||||
|
const stdout = std.io.getStdOut().writer();
|
||||||
|
try stdout.print("OK\n", .{});
|
||||||
|
}
|
|
@ -276,6 +276,7 @@ Content-Type: application/json
|
||||||
`brainfuck`,
|
`brainfuck`,
|
||||||
`cjam`,
|
`cjam`,
|
||||||
`clojure`,
|
`clojure`,
|
||||||
|
`cobol`,
|
||||||
`coffeescript`,
|
`coffeescript`,
|
||||||
`cow`,
|
`cow`,
|
||||||
`crystal`,
|
`crystal`,
|
||||||
|
@ -314,6 +315,7 @@ Content-Type: application/json
|
||||||
`prolog`,
|
`prolog`,
|
||||||
`pure`,
|
`pure`,
|
||||||
`python`,
|
`python`,
|
||||||
|
`raku`,
|
||||||
`rockstar`,
|
`rockstar`,
|
||||||
`ruby`,
|
`ruby`,
|
||||||
`rust`,
|
`rust`,
|
||||||
|
|
Loading…
Reference in New Issue