mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 01:01:59 +03:00
6 lines
95 B
Idris
6 lines
95 B
Idris
|
test1 : Int -> Int
|
||
|
test1 0x100 = 42
|
||
|
test1 0o100 = 43
|
||
|
test1 1234567890 = 44
|
||
|
test1 _ = 0
|