mirror of
https://github.com/anoma/juvix.git
synced 2025-01-07 16:22:14 +03:00
186f4f66ef
Adds Juvix tests for the compilation pipeline - these are converted from the JuvixCore tests (those that make sense). Currently, only the translation from Juvix to JuvixCore is checked for the tests that can be type-checked. Ultimately, the entire compilation pipeline down to native code / WebAssembly should be checked on these tests. Closes #1689
9 lines
95 B
Plaintext
9 lines
95 B
Plaintext
module test001;
|
|
|
|
open import Stdlib.Prelude;
|
|
|
|
main : IO;
|
|
main := printNatLn (5 + 2 * 3);
|
|
|
|
end;
|