mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 01:01:59 +03:00
9797a79b53
* Change the printing of namespaced operator to show parenthesis around operators * Update warning when conflicting fixities are found * Do not warn about redundant but compatible fixities
11 lines
142 B
Idris
11 lines
142 B
Idris
module Main
|
|
|
|
import Lib1
|
|
import LibPre1
|
|
import LibPre2
|
|
|
|
%hide LibPre2.prefix.(*!)
|
|
|
|
main : IO ()
|
|
main = printLn (*! 10 %%% 10) -- should be 90
|