Add reference

This commit is contained in:
2025-07-24 14:43:16 -05:00
parent 92f21917b1
commit 6a8c8f38ff
44 changed files with 2082 additions and 1287 deletions

View File

@@ -0,0 +1,5 @@
/^ Write Text To Standard Output ^/
func Console.WriteLine(text)
{
}

View File

@@ -0,0 +1,5 @@
/^ Get Documents Folder ^/
func Env.getDocuments()
{
}

View File

@@ -0,0 +1,10 @@
/^ Read string contents from file ^/
func FS.ReadAllText(filesystem, path)
{
}
/^ Write string contents to file ^/
func FS.WriteAllText(filesystem, path, contents)
{
}

View File

@@ -0,0 +1,16 @@
/^
Decode JSON String to Object
^/
func Json.Decode(text)
{
}
/^
Encode Object to JSON String
pretty: true: make pretty, false: compact
^/
func Json.Encode(obj, $pretty)
{
}