Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
21
Task/Comments/Quackery/comments.quackery
Normal file
21
Task/Comments/Quackery/comments.quackery
Normal 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.
|
||||
Loading…
Add table
Add a link
Reference in a new issue