mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-14 05:46:47 +03:00
6 lines
374 B
Plaintext
6 lines
374 B
Plaintext
1/1: Building Issue1282 (Issue1282.idr)
|
|
Main> Main.test1 : (b : Bool) -> (if b then () else ())
|
|
Main> \x => if x then x else x
|
|
Main> \a, b, c => case c of { 0 => S (case b of { 0 => S (case a of { 0 => 1 ; i => 0 }) ; i => case a of { 0 => 1 ; i => 0 } }) ; i => case b of { 0 => S (case a of { 0 => 1 ; i => 0 }) ; i => case a of { 0 => 1 ; i => 0 } } }
|
|
Main> Bye for now!
|