Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maplant/fact
FACT (Functions Are Classes Too) is a programming language I made in high school designed to illustrate how complex concepts can be implemented in simple languages.
https://github.com/maplant/fact
Last synced: 27 days ago
JSON representation
FACT (Functions Are Classes Too) is a programming language I made in high school designed to illustrate how complex concepts can be implemented in simple languages.
- Host: GitHub
- URL: https://github.com/maplant/fact
- Owner: maplant
- Created: 2011-04-11T02:15:01.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2014-03-16T07:54:35.000Z (almost 11 years ago)
- Last Synced: 2023-03-18T02:45:41.952Z (almost 2 years ago)
- Language: C
- Homepage:
- Size: 1.13 MB
- Stars: 11
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
FACT (Functions Are Classes Too): A functional/imperative programming language.
FACT is a functional programming language with many imperative aspects. For example, unlike in most functional
programming languages, variables in FACT can change state. The only data type available for creating records
are first-class environments (a.k.a. scopes).The FACT interpreter consists for a virtual machine (nicknamed `Furlow') and a compiler.