|
|
@@ -0,0 +1,7 @@
|
|
|
+Expression Valid? Type or issue
|
|
|
+["hello", 42] No Mixed types within a list are not permitted
|
|
|
+['h',"ello"] No Mixing Char with a list o Char
|
|
|
+['a','b','c'] Yes [Char]
|
|
|
+length ['w','h','o'] Yes Int
|
|
|
+length "hello" Yes Int
|
|
|
+reverse Yes [a] -> [a]
|