swahili-lang
Version:
A new programming language with semantics borrowed from the Swahili language to help teach programming concepts to Swahili speaking students.
12 lines (10 loc) • 302 B
JavaScript
const SWBoolean = require('../types/boolean');
const SWString = require('../types/string');
const SWNull = require('../types/null');
// instantiate global constants
module.exports = {
kweli: SWBoolean.TRUE,
uwongo: SWBoolean.FALSE,
tupu: SWNull.NULL,
wamlambez: new SWString('wamnyonyez'),
};