lean4-htt/examples/init/test.sh
2021-07-26 07:48:49 -04:00

20 lines
281 B
Bash

./clean.sh
# Test `new`
../../build/bin/lake new helloNew
cd helloNew
../../../build/bin/lake build-bin
./build/bin/helloNew
cd ..
# Test `init`
mkdir helloInit
cd helloInit
../../../build/bin/lake init helloInit
../../../build/bin/lake build-bin
./build/bin/helloInit
cd ..