initial commit

This commit is contained in:
nora 2021-07-08 16:30:07 +02:00
commit 80aa1a2be7
8 changed files with 142 additions and 0 deletions

8
AverageMain.idr Normal file
View file

@ -0,0 +1,8 @@
module Main
import Average
showAverage : String -> String
showAverage str = show (average str)
main : IO ()
main = repl "\n> " showAverage