Standard Library
Current standard library modules include:
sysfsteststringnumberarrayhashboolobjectclassmodulefunctionjsonhtmlmathinflector
Core prelude-backed types include:
StringNumberArrayHashBoolObjectClassModuleFunction
Examples:
' Ada '.trim().upcase()
[1, 2, 3].size()
10.s('hex')
json = require('json')
json.encode({first_name = 'Ada'}, casing=json.camelCase)
html = require('html')
b = html.Builder()
b.div(class='panel') do
b.h1('Users')
end
print(b.s())
Each stdlib module now has its own reference page in the sidebar under
Standard Library -> Modules.