Move idris projects to right place
This commit is contained in:
parent
edf363e442
commit
43585ac89e
5 changed files with 0 additions and 0 deletions
2
projects/Idris/.gitignore
vendored
Normal file
2
projects/Idris/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
build/
|
||||
*.*~
|
48
projects/Idris/Idris.ipkg
Normal file
48
projects/Idris/Idris.ipkg
Normal file
|
@ -0,0 +1,48 @@
|
|||
package Idris
|
||||
version = 0.1.0
|
||||
authors = "Nathan McCarty"
|
||||
-- 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 = Idris
|
||||
, Posts.HelloWorld
|
||||
|
||||
-- main file (i.e. file to load at REPL)
|
||||
-- main =
|
||||
|
||||
-- name of executable
|
||||
-- executable =
|
||||
-- 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 =
|
4
projects/Idris/pack.toml
Normal file
4
projects/Idris/pack.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[custom.all.Idris]
|
||||
type = "local"
|
||||
path = "."
|
||||
ipkg = "Idris.ipkg"
|
4
projects/Idris/src/Idris.idr
Normal file
4
projects/Idris/src/Idris.idr
Normal file
|
@ -0,0 +1,4 @@
|
|||
module Idris
|
||||
|
||||
test : String
|
||||
test = "Hello from Idris2!"
|
7
projects/Idris/src/Posts/HelloWorld.md
Normal file
7
projects/Idris/src/Posts/HelloWorld.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Hello World
|
||||
|
||||
```idris
|
||||
module Posts.HelloWorld
|
||||
|
||||
%default total
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue