Files
nub-lang/examples/build.sh
nub31 e512650440 ...
2026-02-27 21:29:28 +01:00

13 lines
270 B
Bash
Executable File

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