mirror of
https://github.com/anoma/juvix.git
synced 2024-12-04 06:23:13 +03:00
b8cd84170b
This PR updates the juvix-stdlib to the current main commit which includes: * https://github.com/anoma/juvix-stdlib/issues/59 * https://github.com/anoma/juvix-stdlib/issues/101 All the Juvix test suite files and examples in this repo have been updated to be compatible with the new stdlib.
10 lines
137 B
Plaintext
10 lines
137 B
Plaintext
module Main;
|
|
|
|
type T := t;
|
|
|
|
type Box := mkBox {unbox : T};
|
|
|
|
f (b : Box) : Box := case b of mkBox _ := mkBox t;
|
|
|
|
main : T := f (mkBox t);
|