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 05:17, 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‎ (4×)]
     
07:32 Tedaryum talk contribs protected O Language/API [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) ‎ (hist)
     
07:31 Tedaryum talk contribs protected O Language/Advanced [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) ‎ (hist)
     
07:30 Tedaryum talk contribs protected O Language/Getting Started/Project Files [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) ‎ (hist)
     
07:30 Tedaryum talk contribs protected O Language/Getting Started/Language Basics [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) ‎ (hist)
N    07:20  O Language/API diffhist +992 Tedaryum talk contribs (Created page with "= API Reference = This is the complete reference section. Use it when you know what you want to do and need the exact name, form, or accepted value. * Syntax — definitions, functions, control flow, scopes, and language forms. * Tokens and Operators — literals, operators, delimiters, and keywords. * Types — language values and runtime objects. * O_Language/API/Functions|Built-in Functio...")
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...")
N    07:17  O Language/Advanced diffhist +1,081 Tedaryum talk contribs (Created page with "= Advanced Topics = Use this section after Getting Started. It covers the runtime model and language features used in larger programs. == Modules == Move reusable definitions into <code>.olm</code> modules and load them by path. The complete loading order and project loader conventions are described in Modules and Loading. == Runtime control == O Language can start external processes, work with environme...")
N    07:16  O Language/Getting Started/Project Files diffhist +728 Tedaryum talk contribs (Created page with "= Project Files = O Language projects use a small number of file types: {| class="wikitable" ! Extension !! Use |- | <code>.ola</code> || Application source or an entry-point file. |- | <code>.olm</code> || Loadable O Language module. |- | <code>.olp</code> || Package metadata and dependency definitions. |- | <code>.ops</code> || Process configuration. |- | <code>.obc</code> || Compiled bytecode output. |} Web projects also use conventional directories such as <code>c...")
N    07:14  O Language/Getting Started/Language Basics diffhist +1,119 Tedaryum talk contribs (Created page with "= Language Basics = == Values and definitions == Use <code>def</code> to bind a value to a name. O Language supports numbers, text, booleans, arrays, hashes, and functions. <pre> def answer = 6 * 7 def greeting = "Hello, world!" def enabled = true def colors = ["red", "blue"] def user = {"name": "Ada"} output(answer) </pre> == Functions == Functions are values. Define one with <code>fn</code>, return a value with <code>return</code>, and call it by name. <pre> def...") Tag: Visual edit: Switched