Amo/sample.amo

70 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-03-11 01:27:59 +00:00
// Comment!
2022-03-10 17:56:38 +00:00
type SimpleType
2022-03-10 01:16:15 +00:00
= MyVariant1
| MyVariant2 Integer[u32]
| MyVariant3 Integer[1..20]
| MyVariant4 Integer String
2022-03-11 01:27:59 +00:00
/* Multiline
Comment! */
2022-03-10 17:56:38 +00:00
type Option val
2022-03-10 01:16:15 +00:00
= Some val
| None
struct MyStruct =
.field1 : SimpleType
.field2 : Integer
trait Eq needs
add : Self, Self -> Self
trait Functor[a, b] on Self _ needs
map : (a -> b), Self a -> Self b
pure : a -> Self a
2022-03-10 17:56:38 +00:00
type ComplexType[a, b : Functor]
2022-03-10 01:16:15 +00:00
= Left a
| Right b
impl Functor on Option _:
map mapper union = if union is
Some val -> Some (mapper val)
None -> None
magnitude : Int, Int -> Int
magnitude x y = sqrt (x * x) (y * y)
soundeffect : Bool -> Str
soundeffect type =
if type then
"bip!"
else
"bop!"
destructure : MyStruct -> Option Integer
destructure s =
if s is
MyStruct
.field1 = MyVariant2 a
.field2 = 0
-> Some (magnitude a 10)
MyStruct
.field1 = MyVariant1
.field2
->
if a > 10
Some a
else
None
_ -> None
destructure_type : SimpleType -> Integer
destructure_type t =
if t is
MyVariant1 -> 0
MyVariant2 x -> x * x
MyVariant3 x -> x /2
MyVariant4 x _ -> x