Skip to content

Instantly share code, notes, and snippets.

@ciao1092
ciao1092 / Forth1.cs
Created February 11, 2023 06:11 — forked from tluyben/Forth1.cs
A minimal Forth implementation in C#
/*
* Minimal .NET Forth implementation. Just an experiment. Do not use for anything serious.
* by Tycho Luyben (https://github.com/tluyben)
*
* The only 'primitive' (built-in) is an foreign function interface word which allows you to define
* whatever is needed, for example:
*
* hello System.String System.Console.WriteLine ffi
*
* will print hello.