Deleted bad sample programs, added polymorphic call in polymorphic function test

This commit is contained in:
Rakarake 2023-03-08 17:38:50 +01:00
parent 63f9689f38
commit d377ded7e1
10 changed files with 50 additions and 41 deletions

6
sample-programs/good1 Normal file
View file

@ -0,0 +1,6 @@
main : _Int ;
main = (id : _Int -> _Int) 5 ;
id : 'a -> 'a ;
id x = (x : 'a);