root/trunk/HasCASL/test/Alias.hascasl @ 8578

Revision 8578, 430 bytes (checked in by maeder, 2 years ago)

corrected examples from overview

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1types S, T
2type Binary := S * S -> T
3var s: Type
4type MyPred s := s ->? Unit
5type MyAlias t := t ->? Unit
6
7type a1 a b := a -> b -> Unit
8type a1 := \ (a) (b) .a -> b  -> Unit
9type a1 a := \ b .a -> b  -> Unit
10
11type a2 := \ (a) (b) . a -> Unit
12
13type a3 := \ (a) (a) . a -> Unit
14
15type a4 a a := a -> Unit
16
17type a5 a
18
19type a5 a := a5 a -> Unit
20
21type a6 a
22
23type a7 a := a6 a -> Unit
24
25type a6 a := a7 a -> Unit
26
27type a2 : Type -> Type
Note: See TracBrowser for help on using the browser.