Initial commit
This commit is contained in:
commit
7f40878575
|
@ -0,0 +1,5 @@
|
||||||
|
.DS_Store
|
||||||
|
.idea
|
||||||
|
*.log
|
||||||
|
tmp/
|
||||||
|
build/
|
|
@ -0,0 +1,47 @@
|
||||||
|
package Naturals
|
||||||
|
-- version =
|
||||||
|
-- authors =
|
||||||
|
-- maintainers =
|
||||||
|
-- license =
|
||||||
|
-- brief =
|
||||||
|
-- readme =
|
||||||
|
-- homepage =
|
||||||
|
-- sourceloc =
|
||||||
|
-- bugtracker =
|
||||||
|
|
||||||
|
-- the Idris2 version required (e.g. langversion >= 0.5.1)
|
||||||
|
-- langversion
|
||||||
|
|
||||||
|
-- packages to add to search path
|
||||||
|
-- depends =
|
||||||
|
|
||||||
|
-- modules to install
|
||||||
|
modules = Naturals
|
||||||
|
|
||||||
|
-- main file (i.e. file to load at REPL)
|
||||||
|
main = Naturals
|
||||||
|
|
||||||
|
-- name of executable
|
||||||
|
executable = naturals
|
||||||
|
-- opts =
|
||||||
|
sourcedir = "src"
|
||||||
|
-- builddir =
|
||||||
|
-- outputdir =
|
||||||
|
|
||||||
|
-- script to run before building
|
||||||
|
-- prebuild =
|
||||||
|
|
||||||
|
-- script to run after building
|
||||||
|
-- postbuild =
|
||||||
|
|
||||||
|
-- script to run after building, before installing
|
||||||
|
-- preinstall =
|
||||||
|
|
||||||
|
-- script to run after installing
|
||||||
|
-- postinstall =
|
||||||
|
|
||||||
|
-- script to run before cleaning
|
||||||
|
-- preclean =
|
||||||
|
|
||||||
|
-- script to run after cleaning
|
||||||
|
-- postclean =
|
|
@ -0,0 +1,4 @@
|
||||||
|
module Naturals
|
||||||
|
|
||||||
|
main : IO ()
|
||||||
|
main = putStrLn "Hello!"
|
Loading…
Reference in New Issue