1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-27 16:49:31 +00:00

Aliases: add wrap > operator

This commit is contained in:
Étienne Fildadut 2023-12-30 23:43:53 +01:00
parent 2cd910389b
commit b7761311fe
10 changed files with 34 additions and 25 deletions

View file

@ -1,6 +1,6 @@
| pouet={persist("pouet", 7)} (7)
:&d = persist("pouet", 12)
:&d => persist("pouet", 12)
| d={d} (7)

View file

@ -1,6 +1,6 @@
:l = *[1,2,3]
::&c = l(2)
::&c => l(2)
| c={c} (2)
| l={l} (*[1,2,3])

View file

@ -1,6 +1,6 @@
:@l = *[1,2,3]
:&@c = l(2)
:&@c => l(2)
| c={c} (2)
| l={l} (*[1,2,3])

View file

@ -1,6 +1,6 @@
:l = *[1,2,3]
:&c = l(2)
:&c => l(2)
| c={c} (2)
| l={l} (*[1,2,3])