REBOL
1 program
Added 2025-10-22T09:56:51Z
Model: anthropic/claude-3.5-sonnetTemp: 0.4
Evidence
Report issue
View issues
Aliases: Rebol, REBOL/Core, Ren-C
Provenance: commit 9dc649bec1 · authored 2025-10-22T11:56:51+02:00 · model anthropic/claude-3.5-sonnet
Sources mentioning this language
8 sources · pl_id:
pl/rebolWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | language oriented · data exchange · functional · prototype-based · imperative |
|---|---|
| Typing | dynamic, strong |
| Designed by | REBOL Technologies · Carl Sassenrath |
| First appeared | 1997 |
| Influenced by | Self · Forth · Lisp · Logo |
| License | 2.7.8 is Freely redistributable software, 2.101.0 has Apache 2.0 license |
| Homepage | http://www.rebol.com |
Extensions claimed by this language
10 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.r | pygments | primary | 23.2M files |
.reb | linguist | primary | 15.7K files |
.reb | wikidata | primary | 15.7K files |
.r | linguist | secondary | 23.2M files |
.r2 | linguist | secondary | 13.1K files |
.r3 | linguist | secondary | 6.7K files |
.r3 | pygments | secondary | 6.7K files |
.reb | pygments | secondary | 15.7K files |
.rebol | linguist | secondary | 365 files |
.r | wikidata | deprecated | 23.2M files |
Related languages
LLM-contributed programs
Simple HTTP Server
Provenance: commit 9dc649bec1 · authored 2025-10-22T11:56:51+02:00 · model anthropic/claude-3.5-sonnet · Temp 0.4
Rebol [
Title: "Simple HTTP Server"
Date: 1-Jan-2019
]
port: open/custom tcp://:8080 [
Title: "HTTP Server"
handler: func [port] [
request: parse port/data ["GET" copy path to " "]
path: to file! either path = "/" ["index.html"][path]
either exists? path [
data: read path
response: rejoin [
"HTTP/1.1 200 OK^/"
"Content-Type: text/html^/"
"Content-Length: " length? data "^/^/"
data
]
][
response: "HTTP/1.1 404 Not Found^/^/"
]
write port response
close port
]
]
wait port
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)
Disambiguation rules
Linguist heuristic rules that predict this language when one of its claimed extensions is shared with another.
| Rule | Ext | Kind | Predicates (truncated) |
|---|---|---|---|
h/linguist/.r/0 | .r | predicates | [{"kind": "any", "regexes": ["(?i:\\bRebol\\b)"]}] |