*-data
*.prj
Clean System Files
+a.out
+getopt
*.[^l]
*.o
test
--- /dev/null
+module test
+
+import StdString
+import Text.Encodings.Base64
+import Gast
+import Gast.CommandLine
+
+pBase :: String -> Bool
+pBase s = s == base64Decode (base64Encode s)
+
+pURL :: String -> Bool
+pURL s = s == base64URLDecode (base64URLEncode s)
+
+Start w = exposeProperties [] [] [pBase, pURL] w
--- /dev/null
+module test
+
+onError= case e of
--- /dev/null
+module test
+
+import StdEnv
+
+class plusa a b c :: a b -> c
+instance plusa Int Int Int where (plusa) x y = x + y
+
+//Overloading error: internal overloading of "plusa" could not be solved
+//Start :: Int
+//Start = plusa 4 (plusa 4 4)
+
+class plusb a b ~c :: a b -> c
+instance plusb Int Int Int where (plusb) x y = x + y
+
+Start = plusb 4 (plusb 4 4)
--- /dev/null
+module test
+
+import StdEnv
+import StdGeneric
+
+generic gen a :: a
+
+gen{|Int|} = 0
+gen{|OBJECT|} fa = OBJECT fa
+
+:: BI =: BI Int
+derive gen BI
+
+//Start w = startEngine (viewInformation "" [ViewAs (\t->TtTag [] [Text t])] "bork") w
+Start :: BI
+Start = gen{|*|}
--- /dev/null
+module test
+
+import iTasks
+import Text.HTML
+
+//Start w = startEngine (viewInformation "" [ViewAs (\t->TtTag [] [Text t])] "bork") w
+Start w = startEngine (viewInformation "" [] (TtTag [] [Text "bork"])) w