Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,21 @@
( The word "(" is a compiler directive (a builder,
in Quackery jargon) that causes the compiler to
disregard everything until it encounters a ")"
preceded by whitespace.
If you require more than that, it is trivial to
define new comment builders... )
[ behead carriage = until ] builds #
# Now the word "#" will cause the compiler to
# disregard everything from the "#" to the end of
# the line that it occurs on.
[ drop $ "" ] builds commentary
commentary
The word "commentary" will cause the compiler to
disregard everything that comes after it to the
end of the source string or file.