Changed the name of the 02 folder to reflect the name of the style

This commit is contained in:
Crista Lopes
2013-10-25 16:22:18 -07:00
parent 6de104653d
commit 8b5fbdc77a
2 changed files with 0 additions and 0 deletions

23
02-go-forth/README.md Normal file
View File

@@ -0,0 +1,23 @@
Style #2
==============================
Constraints:
- Existence of an all-important data stack. All operations
(conditionals, arithmetic, etc.) are done over data on the stack
- Existence of a heap for storing data that's needed for later
operations. The heap data can be associated with names
(i.e. variables). As said above, all operations are done over
data on the stack, so any heap data that needs to be operated upon
needs to be moved first to the stack and eventually back to the heap
- Abstraction in the form of user-defined "procedures" (i.e. names
bound to a set of instructions), which may be called something else
entirely
Possible names:
- Go-Forth (as in the Forth programming language)
- Stack machine