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
Red [ | |
Title: "Nsource - native source" | |
Purpose: "Print source for native functions" | |
Author: "Boleslav Brezovský" | |
Date: "8-6-2017" | |
] | |
indent: func [ | |
"(Un)indent text by tab" | |
string [string!] "Text to (un)indent" |
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
SET QEMUDIR=..\..\Qemu-windows-2.6.0\ | |
SET BIOS=%QEMUDIR%Bios | |
SET QEMU=%QEMUDIR%qemu-system-i386.exe | |
REM cd "qemu\images\mikeos" | |
SET IMAGEDIR=qemu\images\mikeos | |
SET DISKIMAGE="Syllable 0.6.6\Syllable.vmdk" |
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
Red [ | |
Title: "Simple GUI livecoding demo" | |
Author: "Nenad Rakocevic / Didier Cadieu" | |
File: %livecode2.red | |
Needs: 'View | |
Usage: { | |
Type VID code in the bottom right area, you will see the resulting GUI components | |
rendered live on the left side and fully functional (events/actors/reactors working live). | |
The top right area let you define Red's values to be used in your VID code, even functions or anything. | |
} |
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
Red [ | |
Title: "fry.red" | |
Author: ["Gregg Irwin" "Steeve"] | |
File: %fry.red | |
Purpose: { | |
Factor style fry combinators in Red | |
http://docs.factorcode.org/content/article-fry.html | |
works somewhat like a reverse collect/keep | |
} | |
] |