1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-14 08:27:03 +03:00
juvix/tests/positive/Axiom.mjuvix
Paul Cadman dc6fce8820
Add support for compile (by Jonathan) (#66)
* Add support for compile (by Jonathan)

* Remove error related to unsopported backend

Co-authored-by: Jonathan Prieto-Cubides <jonathan.cubides@uib.no>
2022-04-28 17:42:15 +02:00

9 lines
80 B
Plaintext

module Axiom;
axiom Action : Type;
compile Action {
ghc ↦ "IO ()";
};
end;