Files
nub-lang/examples/build.sh
nub31 76efc84984 ...
2026-02-23 18:35:08 +01:00

12 lines
205 B
Bash
Executable File

set -e
pushd math
dotnet run --project ../../compiler math.nub --type=lib
pushd .build
unzip out.nublib
popd
popd
pushd program
dotnet run --project ../../compiler main.nub ../math/.build/out.nublib
popd