1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-30 23:23:07 +00:00

More work on installation and moving files around.

Move all installed libraries into auxlib.
Move all installed executable scripts into auxbin.
This commit is contained in:
Calvin Rose
2019-06-01 10:38:28 -04:00
parent bea6dbbf3d
commit 3d76d988c3
9 changed files with 116 additions and 324 deletions

View File

@@ -1088,6 +1088,12 @@
[f & args]
(file/write stdout (buffer/format @"" f ;args)))
(defn pp
"Pretty print to stdout."
[x]
(print (buffer/format @"" (dyn :pretty-format "%p") x)))
###
###
### Pattern Matching
@@ -1406,11 +1412,6 @@
(set current (macex1 current)))
current)
(defn pp
"Pretty print to stdout."
[x]
(print (buffer/format @"" (dyn :pretty-format "%p") x)))
###
###
### Evaluation and Compilation