Home
Order
Uses
Docs
About
Credits

Get Started

  • Get Started
  • Commands

Infrastructure

  • Relay
  • Bulletin

Authentication

  • Chits
  • License Plate Nonce

Standards

  • Standards
  • Constraints
  • Extending Standards
  • Standards as Constraints
  • Standard Definitions

Records

  • Records
  • In-Memory
  • Finding
  • Sorting
  • Updating
  • Deleting
  • Importing and Exporting

Code

  • Variables & Types
  • Operators
  • Conditions
  • Loops
  • Functions
  • First Run

Functionality

  • Functionality
  • Search
  • Files
  • Intelligence
  • Database

Interfaces

  • Secured Websocket
  • Node GUI

Function in Standard

Define a function by starting a new line with the function name. The function name can be followed by a : if the function will accept arguments. Then follow the function name with an opening bracket {. Enclose code and end with } on a new line.

    
    myFunc {
        print "Hello"
    }

    myFunc #Prints 'Hello'

    sayHello: name {
        print ("Hello ".name."!")
    }

    sayHello: "Kenny" #Prints 'Hello Kenny!'
    
Order Use Cases Docs About Credits Newsletter

© 2026 Standard Computers LLC of Cincinnati