mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 18:21:47 +03:00
10 lines
273 B
Plaintext
Executable File
10 lines
273 B
Plaintext
Executable File
. ../../testutils.sh
|
|
|
|
# @getEnv@ and @setEnv@ use primitive functions with definitions for both
|
|
# C (supported by most backends) and Node.
|
|
idris2 --cg chez -o test Test.idr
|
|
HELLO=hi ./build/exec/test
|
|
|
|
idris2 --cg node -o test.js Test.idr
|
|
HELLO=hi node ./build/exec/test.js
|