Data update

This commit is contained in:
Ingy döt Net 2025-08-11 18:05:26 -07:00
parent 4d5544505c
commit 4924dd0264
3073 changed files with 55820 additions and 4408 deletions

View file

@ -0,0 +1 @@
10 LIST

View file

@ -0,0 +1 @@
Rebol [] q: [print ["Rebol [] q:" mold q "do q"]] do q

View file

@ -0,0 +1,14 @@
;; A Rebol quine - a program that outputs its own source code
;; This demonstrates self-referential code and metaprogramming concepts
Rebol [] ;; Standard Rebol header (minimal version)
q: [ ;; Define q as a block containing the program logic
print [ ;; Print function to output the result
"Rebol [] q:" ;; First part: literal string for the header and variable declaration
mold q ;; Second part: convert the block q back to its source representation
"do q" ;; Third part: literal string for the execution command
]
]
do q ;; Execute the block q, which prints the entire program

View file

@ -1 +0,0 @@
rebol [] q: [print ["rebol [] q:" mold q "do q"]] do q