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