regulus 0.0.14

A simple, interpreted language with very simple syntax and zero dependencies
Documentation
1
2
3
4
5
6
# Prints the documentation string for a function as well its argc.
#
# Use `doc(1)` to return it instead.
def(help, f, write(
    strconcat("<function>(", argc(f), "): ", endl, endl, doc(f), endl)
)),