Standard-Compliant Modules
The standard-compliant modules are located in ans/
and have no dependencies.
These files can be loaded on any ANS Forth system and are used to help build the rest of the kit.
File
Description
Conditional include
Versioning
File utilities
Common toolbelt
Concatenate strings and work with zero-terminated strings.
depend.f
This file provides depend
which will load a given source file only if it hasn't been already loaded.
The usage is depend <filename.f>
. Note that the file's extension is required.
It also extends include
to play well with depend
.
version.f
AFKIT comes with a simple versioning system based on a semver-like version number.
How to use the versioning system
Put a version declaration at the top of the main file of the package. The declaration looks something like this:
And here is how to load the package and check the version:
[checkver]
compares the given numbers to the numbers outputted by [packagename]
.
The first number is the Major version and must match the package's. The second is the Minor version, and the last number is the Revision. The Minor version represents potentially code-breaking changes and the Revision represents bugfixes and additions. If the Minor version or the Revision is greater than the package's, compilation will be aborted. If the Minor version is less than the package's a warning will be printed. No warning is printed if the Revision is less than the package's.
files.f
roger.f
Selected words are explained here. The rest should be self-explanatory from the source.
Declare a vocabulary and set the current one to it.
Conditional include. If the file is already loaded, nothing happens.
strops.f
Tools for concatenating strings and working with zero-terminated strings.
Here are examples of concatenation:
Other string words
Get input from the input stream (keyboard) into a given address range.
Utility word for parsing file paths used by declaring words in the kit.
Last updated