6 lines
137 B
Text
6 lines
137 B
Text
|
||
@[noinline] def f (a : Nat × Nat × Nat) : Nat:=
|
||
a.fst + a.snd.fst + a.snd.snd
|
||
|
||
def main : IO Unit := do
|
||
IO.println (f (1, 2, 3,))
|