I/O
Print(value), PrintLine(value), ReadLine() -> String, ReadInt() -> Int, ReadFloat() -> Float, ReadAllText(path) -> String, WriteAllText(path, content), AppendAllText(path, content).
Files
FileExists(path) -> Bool, FileDelete(path), FileCopy(src, dst), FileMove(src, dst), FileSize(path) -> Int, FileReadLines(path) -> String[].
Directories
DirCreate(path), DirDelete(path), DirExists(path) -> Bool, DirList(path) -> String[], DirListFull(path) -> String[], DirCurrent() -> String, DirSet(path).
Console
ClearScreen(), CursorPos(x, y), GetCursorX() -> Int, plus color and styling helpers.
Math
Abs, Min, Max, Sqrt, Sin, Cos, Tan, Exp, Log, DegToRad, RadToDeg, Random*, SeedRandom.
Strings
StringLen, StringToUpper, StringToLower, StringStartsWith, StringEndsWith, StringContains, StringSub, StringPadLeft, StringPadRight, CharCode, CodeChar.
Network
ResolveHost(host), PingHost(host), HttpGet(url), HttpPost(url, body).
AI / Tensor
Sequential, DenseLayer, DropoutLayer, ModelForward, ModelTrain, ModelSave, TensorCreate, MatMul, MSE, Adam.
Game
Vec3, Quat, CreateEntity, AddComponent, GetComponent, ForEachMulti, Raycast.
Server & Web
http.Serve(port, handler), dom.QuerySelector, StateCreate/Get/Set/Watch.