Idris2/tests/idris2/operators/operators002/Test.idr

39 lines
824 B
Idris
Raw Normal View History

2023-10-25 14:01:52 +03:00
import Data.Vect
private typebind infixr 0 =@
private infixr 0 -@
2023-10-25 14:01:52 +03:00
0 (=@) : (a : Type) -> (a -> Type) -> Type
(=@) a f = (1 x : a) -> f x
(-@) : (a, b : Type) -> Type
(-@) a b = (1 _ : a) -> b
data S : {ty : Type} -> (x : ty) -> Type where
MkS : (x : ty) =@ S x
Mk2 : (x : ty) =@ (y : ty) =@ S (x, y)
Mk3 : (x : ty) =@ ty -@ S x
Mk4 : ty -@ (x : ty) =@ S x
Chain : (x : ty =@ y : ty =@ S (x, y))
private typebind infixr 0 *>
2023-10-25 14:01:52 +03:00
-- (*>) : (ty : Type) -> (ty -> Type) -> Type
-- (*>) = DPair
--
-- testCompose : (x : Nat) *> (y : Nat) *> Vect (n + m) String
-- testCompose = (1 ** 2 ** ["hello", "world", "!"])
private autobind infixr 7 `MyLet`
2023-10-25 14:01:52 +03:00
MyLet : (val) -> (val -> rest) -> rest
MyLet arg fn = fn arg
program : Nat
program = (n := 3) `MyLet` 2 + n
program2 : Nat
program2 = (n : Nat := 3) `MyLet` 2 + n