mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 09:12:34 +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
8 lines
80 B
Idris
8 lines
80 B
Idris
module Lib1
|
|
|
|
infixr 5 %%%
|
|
|
|
export
|
|
(%%%) : Nat -> Nat -> Nat
|
|
m %%% n = minus m n
|