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: "Red help functions" | |
Author: "Gregg Irwin" | |
File: %help.red | |
Tabs: 4 | |
Rights: "Copyright (C) 2013-2017 All Mankind. All rights reserved." | |
License: { | |
Distributed under the Boost Software License, Version 1.0. | |
See https://github.com/dockimbel/Red/blob/master/BSL-License.txt | |
} |
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 [] | |
form-all: func [blk][ | |
forall blk [blk/1: form blk/1] | |
blk | |
] | |
types-of: function [value [typeset!]][ | |
; typesets don't support reflection | |
third load mold value |
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 [ | |
Author: "ifgem" | |
] | |
#do [ | |
macro: context [ | |
make-object-spec: function [words] [ | |
spec: copy [] | |
foreach word words [ |
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: "Heart animation" | |
author: "Didier Cadieu" | |
notes: { | |
Traduction in Red of Terebus Volodymyr javascript demo : http://codepen.io/tvolodimir/pen/wqKuJ | |
} | |
Needs: View | |
] | |
;*** Settings |
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 [ | |
description: { | |
Attempt to copy Haiku Editor | |
http://forthsalon.appspot.com/haiku-editor | |
} | |
todo: { | |
* Optimize GUI | |
* Add memory and words: @ ! | |
* Add return stack and words: push pop r@ | |
* Add mouse handling: mx my button buttons |
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: "Partial grep implementation" | |
Purpose: {To search the input for lines containing a match | |
to the given pattern, specified as a regular expression} | |
Author: "Rudolf W. MEIJER" | |
File: %grep.red | |
Version: 0.4.0 | |
Date: "24-Nov-2016" | |
Rights: "(c) Copyright 2016 Rudolf W. MEIJER" | |
History: [ |
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
REBOL [ | |
Title: "VB Like Operator Module" | |
Date: 10-Sep-2003 | |
Version: 0.0.3 | |
File: %like.r | |
Author: "Gregg Irwin" | |
Purpose: { | |
The LIKE? function is a first crack at something like | |
VB's Like operator. i.e. a *very* simple RegEx engine. The | |
real purpose was to help me get acquainted with parse. |
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: "BMR (Basal Metabolic Rate) Calculator" | |
Author: "Gregg Irwin" | |
File: %bmr-calc.red | |
Needs: View | |
Comment: { | |
An experiment in reactivity and data modeling. | |
TBD: Caloric calcs based on activity level. |
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: "View Interface Dialect" | |
Author: ["Nenad Rakocevic" "Boleslav Březovský"] | |
File: %VID.red | |
Tabs: 4 | |
Rights: "Copyright (C) 2014-2016 Nenad Rakocevic. All rights reserved." | |
License: { | |
Distributed under the Boost Software License, Version 1.0. | |
See https://github.com/dockimbel/Red/blob/master/BSL-License.txt | |
} |
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: "BMR (Basal Metabolic Rate) Calculator" | |
Author: "Gregg Irwin" | |
File: %bmr-calc.red | |
Needs: View | |
Comment: { | |
An experiment in reactivity and data modeling. | |
TBD: Caloric calcs based on activity level. |