mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 01:01:59 +03:00
10 lines
109 B
Idris
10 lines
109 B
Idris
module Main
|
|
|
|
import Lib2
|
|
import Lib1
|
|
|
|
%hide Lib2.infixl.(%%%)
|
|
|
|
main : IO ()
|
|
main = printLn (10 %%% 10 %%% 1)
|