“Ŀo‘’FQỌµḟ;¹V
Provalo online! o esegui i primi dieci programmi .
sfondo
Jelly ha diversi tipi di letterali stringa; tutti iniziano con a “
. Se il valore letterale ne contiene più di uno “
, viene restituita una matrice di stringhe che “
separa le stringhe l'una dall'altra.
Ad esempio, i “abc“def”
rendimenti ['abc', 'def']
.
A seconda dell'ultimo carattere del letterale (uno qualsiasi ”«»‘’
, dove non «
è attualmente implementato), si può scegliere tra i diversi tipi di letterali. Per ‘
, otteniamo i punti di codice nella codepage di Jelly invece dei corrispondenti caratteri Unicode.
Ad esempio, i “abc“def‘
rendimenti [[97, 98, 99], [100, 101, 102]]
.
I valori letterali nei primi tre programmi corrispondono ai seguenti array di punti di codice.
“Ŀo‘ -> [199, 111]
““ĿĿoo‘ -> [[], [199, 199, 111, 111]]
“““ĿĿĿooo‘ -> [[], [], [199, 199, 199, 111, 111, 111]]
Come funziona ( n = 3 )
“““ĿĿĿooo‘‘‘’’’FFFQQQỌỌỌµµµḟḟḟ;;;¹¹¹VVV Main link. Implicit argument: 0
“““ĿĿĿooo‘ Yield the 2D array
[[], [], [199, 199, 199, 111, 111, 111]].
‘‘ Increment twice, yielding
[[], [], [201, 201, 201, 113, 113, 113]].
’’’ Decrement thrice, yielding
[[], [], [198, 198, 198, 110, 110, 110]].
F Flatten, yielding
[198, 198, 198, 110, 110, 110].
FF Twice more. Does nothing.
Q Unique; yield [198, 110].
QQ Twice more. Does nothing.
Ọ Unordinal; convert the Unicode code points
198 and 110 to 'Æ' and 'n'.
ỌỌ Twice more. Does nothing.
µµµ Begin three monadic chains, all with
argument s := "Æn".
ḟ Filter-false; remove the characters of s
from s, yielding "".
ḟḟ Twice more. Does nothing.
;;;¹ Concatenate with s three times, yielding
"ÆnÆnÆn".
¹¹ Identity function. Does nothing.
V Eval the resulting Jelly code, i.e.,
call the next-prime atom thrice, with
initial implicit argument 0.
VV Eval two more times. This is a no-op
on integers.