🐐 Examples

This commit is contained in:
2026-04-01 14:15:06 +02:00
parent 334f0ea5a4
commit 2f138093e3
8 changed files with 97 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
// Prints an X×X multiplication table
DESIGNA n VT X
DONICVM i VT I VSQVE n + I FACE {
DESIGNA line VT ""
DONICVM k VT I VSQVE n + I FACE {
DESIGNA line VT line : i * k : " "
}
DICE(line)
}