├── .gitignore ├── LICENSE ├── README.md ├── UBUNTU_INSTALL.md ├── api.4th ├── compat-common.4th ├── compat-gforth.4th ├── compat-vfx.4th ├── f.4th ├── package.4th ├── tarit.sh ├── version-string.fs ├── versions.4th └── vt100.4th /.gitignore: -------------------------------------------------------------------------------- 1 | .*swp 2 | forth-packages 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeraldWodni/f/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeraldWodni/f/HEAD/README.md -------------------------------------------------------------------------------- /UBUNTU_INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeraldWodni/f/HEAD/UBUNTU_INSTALL.md -------------------------------------------------------------------------------- /api.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeraldWodni/f/HEAD/api.4th -------------------------------------------------------------------------------- /compat-common.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeraldWodni/f/HEAD/compat-common.4th -------------------------------------------------------------------------------- /compat-gforth.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeraldWodni/f/HEAD/compat-gforth.4th -------------------------------------------------------------------------------- /compat-vfx.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeraldWodni/f/HEAD/compat-vfx.4th -------------------------------------------------------------------------------- /f.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeraldWodni/f/HEAD/f.4th -------------------------------------------------------------------------------- /package.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeraldWodni/f/HEAD/package.4th -------------------------------------------------------------------------------- /tarit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeraldWodni/f/HEAD/tarit.sh -------------------------------------------------------------------------------- /version-string.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeraldWodni/f/HEAD/version-string.fs -------------------------------------------------------------------------------- /versions.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeraldWodni/f/HEAD/versions.4th -------------------------------------------------------------------------------- /vt100.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeraldWodni/f/HEAD/vt100.4th --------------------------------------------------------------------------------