2020-04-05 15:36:27 by Nia Alarie | Files touched by this commit (2) |
Log message:
janet: Update to 1.8.1
## 1.8.1 - 2020-03-31
- Fix bugs for big endian systems
- Fix 1.8.0 regression on BSDs
|
2020-03-30 11:22:21 by Nia Alarie | Files touched by this commit (3) |
Log message:
janet: Update to 1.8.0
## 1.8.0 - 2020-03-29
- Add `reduce2`, `accumulate`, and `accumulate2`.
- Add lockfiles to `jpm` via `jpm make-lockfile` and `jpm load-lockfile`.
- Add `os/realpath` (Not supported on windows).
- Add `os/chmod`.
- Add `chr` macro.
- Allow `_` in the `match` macro to match anything without creating a binding
or doing unification. Also change behavior of matching nil.
- Add `:range-to` and `:down-to` verbs in the `loop` macro.
- Fix `and` and `or` macros returning nil instead of false in some cases.
- Allow matching successfully against nil values in the `match` macro.
- Improve `janet_formatc` and `janet_panicf` formatters to be more like \
`string/format`.
This makes it easier to make nice error messages from C.
- Add `signal`
- Add `fiber/can-resume?`
- Allow fiber functions to accept arguments that are passed in via `resume`.
- Make flychecking slightly less strict but more useful
- Correct arity for `next`
- Correct arity for `marshal`
- Add `flush` and `eflush`
- Add `prompt` and `return` on top of signal for user friendly delimited \
continuations.
- Fix bug in buffer/blit when using the offset-src argument.
- Fix segfault with malformed pegs.
|
2020-03-04 12:23:02 by Nia Alarie | Files touched by this commit (2) |
Log message:
janet: Add link to github issue (thanks leah)
|
2020-03-03 11:02:20 by Nia Alarie | Files touched by this commit (1) |
Log message:
janet: Add test target ("205 of 205 tests passed")
|
2020-03-03 10:44:02 by Nia Alarie | Files touched by this commit (6) |
Log message:
lang: Add janet.
Janet is a functional and imperative programming language.
Janet makes a good system scripting language, or a language to embed in
other programs. Think Lua or Guile. Janet also can be used for rapid
prototying, dynamic systems, and other domains where lisp shines.
|