mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 08:27:03 +03:00
dc6fce8820
* Add support for compile (by Jonathan) * Remove error related to unsopported backend Co-authored-by: Jonathan Prieto-Cubides <jonathan.cubides@uib.no>
9 lines
80 B
Plaintext
9 lines
80 B
Plaintext
module Axiom;
|
|
|
|
axiom Action : Type;
|
|
compile Action {
|
|
ghc ↦ "IO ()";
|
|
};
|
|
|
|
end;
|