1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-05 22:46:08 +03:00
juvix/tests/Internal/positive/IdenFunctionIntegerLiteral.juvix
2022-11-07 14:47:56 +01:00

12 lines
112 B
Plaintext

module IdenFunctionIntegerLiteral;
open import Stdlib.Prelude;
f : Nat;
f := 1;
main : Nat;
main := f;
end;