mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 18:21:47 +03:00
11 lines
141 B
Idris
11 lines
141 B
Idris
|
module Main
|
||
|
|
||
|
import Lib1
|
||
|
import LibPre1
|
||
|
import LibPre2
|
||
|
|
||
|
%hide LibPre1.prefix.(*!)
|
||
|
|
||
|
main : IO ()
|
||
|
main = printLn (*! 10 %%% 10) -- should be 0
|