Skip to content

Instantly share code, notes, and snippets.

@sogaiu
Last active April 9, 2025 04:41
Show Gist options
  • Save sogaiu/c17c3059674be52bd61d31858df0a320 to your computer and use it in GitHub Desktop.
Save sogaiu/c17c3059674be52bd61d31858df0a320 to your computer and use it in GitHub Desktop.
janet $0, $1, ..., $& trickiness
(|[$0 $1] 1 0)
# =>
[1 0]
(|[$&] 1 0)
# =>
[[1 0]]
(|[$0 $1 $&] 1 0)
# =>
[1 0 []]
(|[$0 $1 $&] 1 0 -1)
# =>
[1 0 [-1]]
(|[$ $&] 1 0)
# =>
[1 [0]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment