Move idris projects to right place

This commit is contained in:
Nathan McCarty 2025-01-20 21:54:54 -05:00
parent edf363e442
commit 43585ac89e
5 changed files with 0 additions and 0 deletions

2
projects/Idris/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
build/
*.*~

48
projects/Idris/Idris.ipkg Normal file
View 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
View file

@ -0,0 +1,4 @@
[custom.all.Idris]
type = "local"
path = "."
ipkg = "Idris.ipkg"

View file

@ -0,0 +1,4 @@
module Idris
test : String
test = "Hello from Idris2!"

View file

@ -0,0 +1,7 @@
# Hello World
```idris
module Posts.HelloWorld
%default total
```