-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 1.1.0: adds execution token support
- Loading branch information
Showing
7 changed files
with
133 additions
and
6 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
Package: froth | ||
Title: Emulate a 'Forth' Programming Environment | ||
Version: 1.0.0 | ||
Version: 1.1.0 | ||
Authors@R: | ||
person(given="Aidan", family="Lakshman", email="[email protected]", | ||
role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0002-9465-6785")) | ||
Description: Emulates a 'Forth' programming environment with added features to interface between R and 'Forth'. Implements most of the functionality described in the original "Starting Forth" textbook <https://www.forth.com/starting-forth/>. | ||
Description: Emulates a 'Forth' programming environment with added features to | ||
interface between R and 'Forth'. Implements most of the functionality described | ||
in the original "Starting Forth" textbook <https://www.forth.com/starting-forth/>. | ||
Depends: R (>= 4.3.0) | ||
Imports: methods | ||
Suggests: | ||
|
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 |
---|---|---|
@@ -1,2 +1,7 @@ | ||
# Version 1.1.0 | ||
* Execution token functionality added (`'`, `EXECUTE`) | ||
* Note that `'` is currently equivalent to `[']` due to how input is processed | ||
* `Variables.Rmd` updated for execution token tutorial. | ||
|
||
# Version 1.0.0 | ||
* Initial Release | ||
* Initial Release |
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
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