Initial commit

This commit is contained in:
Nathan McCarty 2024-12-30 11:08:48 +00:00
commit c34c38fc03
5 changed files with 36 additions and 0 deletions

9
.envrc Normal file
View file

@ -0,0 +1,9 @@
use flake ~/Projects/Nix/system#idris2
export PACK_DIR=~/Projects/Idris/.env/pack
export RAKUDIST_HOME=~/Projects/Idris/.env/raku
export ZEF_BIN_DIR=~/Projects/Idris/.env/raku/bin
export HEDGEHOG_COLOR=true
export RAKULIB=/home/nathan/Projects/Idris/iutils/lib
PATH_add ~/Projects/Idris/.env/pack/bin
PATH_add ~/Projects/Idris/.scripts/bin
PATH_add ~/Projects/Idris/.env/raku/bin

7
.gitignore vendored Normal file
View file

@ -0,0 +1,7 @@
.DS_Store
.idea
*.log
tmp/
.tmp/
.direnv/
**/.precomp/

16
META6.json Normal file
View file

@ -0,0 +1,16 @@
{
"name": "iutils",
"description": "Idris 2 utilities for testing, benchmarking, and documentation",
"version": "0.1.0",
"perl": "6.d",
"authors": [
"Nathan McCarty <thatonelutenist@stranger.systems>"
],
"provides": {
"IUtils::IDEMode": "lib/IUtils/IDEMode.rakumod"
},
"bin": {
"iutils": "bin/iutils"
},
"resources": [ ],
}

3
bin/iutils Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env raku
use v6.d;
use IUtils::IDEMode;

View file

@ -0,0 +1 @@
unit module IUtils::IDEMode;