1
0
Fork 0
mirror of https://github.com/engineer-man/piston.git synced 2025-05-07 20:36:26 +02:00

edited raku version

changed the same stuff as last time but with different stuff
This commit is contained in:
Hydrazer 2021-06-18 14:48:02 -06:00
parent 4c22b1689c
commit 58187763f4
5 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,10 @@
#!/usr/bin/env bash
mkdir -p bin
cd bin/
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
cd ../

View file

@ -0,0 +1,4 @@
#!/bin/bash
# Path to raku binary
export PATH=$PWD/bin:$PATH

View file

@ -0,0 +1,5 @@
{
"language": "raku",
"version": "6.0.0-d",
"aliases": ["raku", "rakudo", "perl6", "p6", "pl6"]
}

View file

@ -0,0 +1,3 @@
#!/bin/bash
raku "$@"

View file

@ -0,0 +1 @@
say "OK"