https://github.com/hoytech/frugal
Simple forth environment written in 2002
https://github.com/hoytech/frugal
forth
Last synced: 2 months ago
JSON representation
Simple forth environment written in 2002
- Host: GitHub
- URL: https://github.com/hoytech/frugal
- Owner: hoytech
- License: other
- Created: 2015-12-17T16:52:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-17T16:54:24.000Z (over 9 years ago)
- Last Synced: 2025-03-25T16:22:57.527Z (3 months ago)
- Topics: forth
- Language: C
- Size: 45.9 KB
- Stars: 8
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
HardCore SoftWare's FORTH system: Frugal
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~This program is Copyright 2002,2015 by HardCore Software, and is licensed
under the 2-clause BSD license. See the file LICENSE for details.This is the Frugal Forth environment. Programming and usage is very
similar to most Forth environments.Configuration: (PROBABLY OPTIONAL)
Edit Makefile and uncomment to appropriate configuration line, according to
your operating system and architecture.Compilation:
makeRunning:
./frugalYou can include files on the command line:
./frugal progs/pong.fsYou can also include files from within the interpreter like so:
include" progs/pong.fs"Also, you may want to investigate fgcc, a gcc wrapper for frugal forth
code that will let you create native, standalone (except for libc)
applications. Check out docs/FGCC for more details.See the files in docs/ for more info on programming and implementation.
See the files in progs/ for example programs written in Frugal and extensions
to Frugal's core.If you write some decent programs in frugal, I would very much like to
include them in the progs/ directory. Please E-Mail me!Doug Hoyte