added nelua

This commit is contained in:
AKDev21 2021-12-14 21:17:21 +05:30
parent 104b80df5c
commit 05adeb9076
5 changed files with 21 additions and 0 deletions

7
packages/nelua/build.sh Normal file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env bash
git clone https://github.com/edubart/nelua-lang
cd nelua-lang
make

View file

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Put 'export' statements here for environment variables
export PATH="$PWD/nelua-lang:$PATH"

View file

@ -0,0 +1,5 @@
{
"language": "nelua",
"version": "0.2.0-dev",
"aliases": ["nelua"]
}

4
packages/nelua/run Normal file
View file

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Put instructions to run the runtime
nelua "$@"

View file

@ -0,0 +1 @@
print("OK")