├── .gitattributes ├── .github ├── build.sh └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README ├── forth.img └── forth.scr /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablevm/able-forth/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablevm/able-forth/HEAD/.github/build.sh -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablevm/able-forth/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablevm/able-forth/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablevm/able-forth/HEAD/README -------------------------------------------------------------------------------- /forth.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablevm/able-forth/HEAD/forth.img -------------------------------------------------------------------------------- /forth.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablevm/able-forth/HEAD/forth.scr --------------------------------------------------------------------------------