Primitives
Primitive data types are used to describe the smallest elements of data in an program.
Nil
knotconst empty = nil;
knotconst empty = nil;
Boolean
knotconst truthy = true;const falsy = false;
knotconst truthy = true;const falsy = false;
Integer
knotconst integer = 10;
knotconst integer = 10;
Float
knotconst float = 1.5;
knotconst float = 1.5;
String
knotconst string = "foo";
knotconst string = "foo";