A number is either an integer or a float.
print(6)
print(3.141)
See also: Operations
A string is a series of characters surrounded by quotes (either single or double).
print("Hello World!")
print('Hello Reader!')
See also: Operations
A list is a set of comma separated values.
print([ true, "truthy", 3.141, 6 ])
See also: Operations
A function is a block of CorLang code that runs when it’s called.
func my_func() -> "this is the return"
print(my_func())
See also: Functions
A built-in function executes “native” Python code when called.
print()
See also: Built-ins