mirror of
https://github.com/engineer-man/piston.git
synced 2025-06-08 11:16:27 +02:00
added nelua
This commit is contained in:
parent
104b80df5c
commit
05adeb9076
5 changed files with 21 additions and 0 deletions
7
packages/nelua/build.sh
Normal file
7
packages/nelua/build.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
git clone https://github.com/edubart/nelua-lang
|
||||
|
||||
cd nelua-lang
|
||||
|
||||
make
|
4
packages/nelua/environment
Normal file
4
packages/nelua/environment
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put 'export' statements here for environment variables
|
||||
export PATH="$PWD/nelua-lang:$PATH"
|
5
packages/nelua/metadata.json
Normal file
5
packages/nelua/metadata.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"language": "nelua",
|
||||
"version": "0.2.0-dev",
|
||||
"aliases": ["nelua"]
|
||||
}
|
4
packages/nelua/run
Normal file
4
packages/nelua/run
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put instructions to run the runtime
|
||||
nelua "$@"
|
1
packages/nelua/test.nelua
Normal file
1
packages/nelua/test.nelua
Normal file
|
@ -0,0 +1 @@
|
|||
print("OK")
|
Loading…
Add table
Add a link
Reference in a new issue