summaryrefslogtreecommitdiff
path: root/hello.idr
diff options
context:
space:
mode:
authorKjetil Orbekk <kjetil.orbekk@gmail.com>2017-02-11 20:18:46 -0500
committerKjetil Orbekk <kjetil.orbekk@gmail.com>2017-02-11 20:18:46 -0500
commit11082ee77ac7e980680d5ca45df9a84ad55641d2 (patch)
tree0c1ed6fedf46d8309d4a060931651f67ef7aa7d9 /hello.idr
Initial commit.
http://docs.idris-lang.org/en/latest/tutorial/typesfuns.html
Diffstat (limited to 'hello.idr')
-rw-r--r--hello.idr4
1 files changed, 4 insertions, 0 deletions
diff --git a/hello.idr b/hello.idr
new file mode 100644
index 0000000..bf732c8
--- /dev/null
+++ b/hello.idr
@@ -0,0 +1,4 @@
+module Main
+
+main : IO ()
+main = putStrLn "Hello, World!"