tsets
authorMart Lubbers <mart@martlubbers.net>
Thu, 16 May 2019 06:11:48 +0000 (08:11 +0200)
committerMart Lubbers <mart@martlubbers.net>
Thu, 16 May 2019 06:11:48 +0000 (08:11 +0200)
.gitignore
test.icl [new file with mode: 0644]
test2.icl [new file with mode: 0644]

index 16286dc..c17b393 100644 (file)
@@ -7,6 +7,8 @@ a.out
 getopt
 *.[^l]
 *.o
+*.bc
+*.pbc
 test
 gopt
 afp/a[0-9]/a[0-9]
diff --git a/test.icl b/test.icl
new file mode 100644 (file)
index 0000000..99d51e1
--- /dev/null
+++ b/test.icl
@@ -0,0 +1,9 @@
+module test
+
+import iTasks
+import iTasks.Extensions.DateTime
+
+Start w = doTasks (onStartup t) w
+
+t :: Task Int
+t = throw "bork"
diff --git a/test2.icl b/test2.icl
new file mode 100644 (file)
index 0000000..a1876a8
--- /dev/null
+++ b/test2.icl
@@ -0,0 +1,3 @@
+module test2
+
+Start = 42