-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Relative Expression Based Object Language (REBOL, now known as Rebol) used to be closed-source, but since Rebol3 it is not under Apache 2.0!
- Loading branch information
Showing
6 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# syntax=docker/dockerfile:1 | ||
# escape=\ | ||
FROM 100hellos/000-base:local | ||
|
||
RUN curl -o rebol3.gz -L https://github.com/Oldes/Rebol3/releases/download/3.18.0/rebol3-core-linux-x64-musl.gz && \ | ||
gunzip rebol3.gz && \ | ||
chmod +x rebol3 && \ | ||
sudo mv rebol3 /usr/local/bin/rebol3 | ||
|
||
COPY --chown=human:human ./files /hello-world |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include ../Makefile.language-container.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# REBOL | ||
|
||
Rebol is a homoiconic language that was designed by Carl Sassenrath. It is a descendant of Lisp and Forth, and it is known for its simplicity and ease of use. Rebol is a cross-platform language that can be used for a variety of tasks, including scripting, web development, and data processing. | ||
|
||
From [Wikipedia](https://en.wikipedia.org/wiki/Rebol): | ||
|
||
> Douglas Crockford, known for his involvement in the development of JavaScript, has described Rebol as "a more modern language, but with some very similar ideas to Lisp, in that it's all built upon a representation of data which is then executable as programs" and as one of JSON's influences. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
REBOL [Title: "Example"] | ||
print "Hello World!" | ||
quit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env sh | ||
|
||
rebol3 hello-world.r |