jellylanguage icon indicating copy to clipboard operation
jellylanguage copied to clipboard

Jelly is a recreational programming language inspired by J.

Results 22 jellylanguage issues
Sort by recently updated
recently updated
newest added

I [queried SE for new Jelly code](https://data.stackexchange.com/codegolf/query/1290714) since some suggestions in #69 got implemented (May 2018). I did [analysis](https://gist.github.com/lynn/34af40e75a4cef9e97de1ccf4f686825) on the CSV and got a [new corpus](https://gist.github.com/lynn/bc6517f3b150e4535748a813ad608aa2) with new most...

Given a list of pairs **[[a, b], [c, d], [e, f]]**, `Æ*` computes **abcdef**. In other words, it's short for `*/€P`. This is a right inverse of `ÆF`, which generates...

#56 suggests some new atoms that perform regex operations, but perhaps it'd be better to introduce a new kind of "string start" that syntactically starts a regex, with its own...

Let `F` be a monadic link. `FƘ` is a dyad that maps **(x, y)** to **[t for t in x if F(t) == y]**. So, `…LƘ4` means “filter to elements...

This follows the convention that hooked letters represent nilads. For example, ɠ reads from STDIN. For example, to treats all command line arguments as numbers and outputs the sum of...

I think it would be good if you would include a tutorial on how exactly to type each character, except copying them from your webpage.

When reducing an empty list with no initial values specified return an empty list rather than raising a TypeError ("reduce() of empty sequence with no initial value"). I believe this...

`A` Upper case. `C` Swap case . `N` Lower case. `İ` `chr(ord(z) + 1)`. `Ị` `chr(ord(z) - 1)`. `Ẓ` Index of z in Jelly's code page (unaliased `ÆP`). Still is...

Important notes: + Getting the runs is done by using the `group_equal` function directly, not based on the `Œg` atom's behavior. + Molding is done based on the `ṁ` atom's...