Related changes

From OnixOS

Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.

Recent changes options Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 days
Hide registered users | Hide anonymous users | Hide my edits | Show bots | Hide minor edits
Show new changes starting from 04:48, 27 August 2026
 
Page name:
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

25 August 2026

     07:32  (Protection log) [Tedaryum‎ (7×)]
     
07:32 Tedaryum talk contribs protected O Language/API/System [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) ‎ (hist)
     
07:32 Tedaryum talk contribs protected O Language/API/CLI [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) ‎ (hist)
     
07:32 Tedaryum talk contribs protected O Language/API/Functions [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) ‎ (hist)
     
07:32 Tedaryum talk contribs protected O Language/API/Types [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) ‎ (hist)
     
07:32 Tedaryum talk contribs protected O Language/API/Tokens [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) ‎ (hist)
     
07:32 Tedaryum talk contribs protected O Language/API/Syntax [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) ‎ (hist)
     
07:32 Tedaryum talk contribs protected O Language/Web Framework [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [cascading] ‎ (hist)
N    07:22  O Language/API/System diffhist +1,459 Tedaryum talk contribs (Created page with "= System APIs = System APIs connect O Language programs to the operating system and external services. == Files and environment == Use <code>read</code>, <code>write</code>, <code>remove</code>, <code>mkdir</code>, <code>rmdir</code>, <code>finfo</code>, <code>chmod</code>, <code>exist</code>, <code>wdir</code>, and <code>chdir</code> for files and directories. Use <code>sysenv</code> to read environment values. == Processes == Use <code>open</code>, <code>run</code...")
N    07:21  O Language/API/CLI diffhist +1,519 Tedaryum talk contribs (Created page with "= CLI = The <code>olang</code> executable runs source files, starts the REPL, manages packages and processes, and operates web projects. == Source commands == <pre> olang # Start the REPL olang run <file> # Run a source file olang exec 'output("Hello")' olang compile -f <file> -o <output> </pre> == Package commands == <pre> olang install [-f library.olp] olang info [-f library.olp] olang generate [-f library.olp...")
N    07:21  O Language/API/Functions diffhist +2,137 Tedaryum talk contribs (Created page with "= Built-in Functions = This page summarizes the current built-in registry in the O Language source repository. == Values and collections == <code>itostr</code>, <code>atostr</code>, <code>getval</code>, <code>type</code>, <code>len</code>, <code>first</code>, <code>last</code>, <code>rest</code>, <code>push</code>, <code>map</code>, <code>replace</code>, and <code>rand</code> operate on values and collections. == Console, files, and data == Console functions include...")
N    07:21  O Language/API/Types diffhist +1,148 Tedaryum talk contribs (Created page with "= Types = O Language values are dynamically represented at runtime. {| class="wikitable" ! Value !! Example !! Description |- | Integer || <code>42</code> || Signed whole number. |- | Float || <code>3.14</code> || Floating-point number. |- | Boolean || <code>true</code> || Boolean value. |- | String || <code>"O Language"</code> || Text value. |- | Array || <code>[1, "two", true]</code> || Ordered, zero-based collection. |- | Hash || <code>{"name": "O"}</code> || Key/va...")
N    07:21  O Language/API/Tokens diffhist +1,594 Tedaryum talk contribs (Created page with "= Tokens and Operators = == Literals == {| class="wikitable" ! Token !! Example |- | Identifier || <code>name</code> |- | Integer || <code>42</code> |- | Float || <code>3.14</code> |- | String || <code>"hello"</code> |- | Boolean || <code>true</code>, <code>false</code> |} Comments start with <code>#</code> and continue to the end of the source input. == Operators and delimiters == Arithmetic operators are <code>+</code>, <code>-</code>, <code>*</code>, and <code>/<...")
N    07:20  O Language/API/Syntax diffhist +1,067 Tedaryum talk contribs (Created page with "= Syntax = == Definitions and expressions == <pre> def answer = 6 * 7 def greeting = "Hello, " + "world!" output(answer) </pre> Statements may be separated with semicolons. Braces delimit blocks, hashes, and scopes. == Functions == <pre> def add = fn(left, right) { return left + right } output(add(2, 3)) </pre> Functions are first-class values and can be passed to <code>map</code>. == Conditions and iteration == Use <code>if</code> and <code>else</code> for br...")
N    07:20  O Language/Web Framework diffhist +2,322 Tedaryum talk contribs (Created page with "= O Language Web Framework (olf) = <code>olf</code> is the convention-based web framework for O Language. It provides a project layout for routes, controllers, templates, browser assets, and database code. == Create and run a project == <pre> olang web init my-project cd my-project olang web run </pre> The official framework source is [https://gitlab.com/olanguage/web/framework the olf repository]. == Project structure == {| class="wikitable" ! Path !! Responsibili...")
N    07:19  O Language/Web diffhist +1,295 Tedaryum talk contribs (Created page with "= Web Programming = O Language includes an HTTP server runtime. This section explains web programming concepts; O Language Web Framework explains project scaffolding and the <code>olf</code> conventions. == Start an HTTP server == Pass a port and a route hash to <code>webserver</code>: <pre> def config = { "/": {"type": "GET", "response": "Welcome!"} } webserver("8080", config) </pre> == Handle requests == A route response can be a f...")