language basics
syntax
ghūl syntax is inspired by a number of non-brace languages, including ALGOL 68 and Pascal
identifiers and keywords
Identifiers in ghūl follow the convention of snake_case for variables, functions, methods, and properties, PascalCase for namespaces, traits, abstract classes, unions, and enums, and MACRO_CASE for concrete classes, structs, variants, and enum members. ghūl keywords are lowercase.
ghūl relies on keywords for block structure where other languages use braces or indentation. Keywords are context specific and generally come in pairs where the closing keyword is the reverse or mirror image of the opening keyword. In the examples below is introduces a method or class body and its block is closed by the reverse keyword si
The thing is: a hello
expressions and statements
Expressions in ghūl are constructs that return a value, while statements perform actions. All expressions can be used where statements are allowed, but only if statements can be used as expressions.
x is greater than 5
function declarations
Functions in ghūl are declared with an optional return type, a name, a list of parameters in parentheses, and a body enclosed in is and si keywords
Functions can also have an expression body using => instead of is / si:
control flow
ghūl supports various control flow constructs like if, else, while, for, and case expressions.
Positive
types
ghūl is statically typed, with some support for type inference. Types can be explicitly specified using a colon : plus a type expression
User types are defined using class, struct, trait, enum, and union keywords.
built-in data types
ghūl's built-in data types are primitive types, arrays, tuples, and optionals.
primitive types
ghūl provides the following primitive data types:
- integer types:
byte,ubyte,short,ushort,int,uint,long,ulong,word,uword - floating-point types:
single,double - fixed-point type:
decimal - boolean type:
bool - character type:
char - void type:
void
These types are used to represent basic values in ghūl programs.
arrays
ghūl supports arrays, which are fixed-size, immutable collections of elements of the same type. Array types are denoted using square brackets [] after the element type.
Arrays can be constructed with an array literal
Array elements can be read with indexer syntax
tuples
Tuples in ghūl are lightweight, immutable data structures that can hold a fixed number of elements of different types. Tuple types use parentheses ( ), with elements separated by commas. Tuple literals are similarly constructed with ( ) and comma delimited elements. Tuples compare by structural equality: two tuples are equal when their corresponding elements are.
Tuple elements can be accessed using the dot . notation followed by the element name:
Tuple elements can be given more descriptive names, either in the type or in the tuple literal:
ghūl also supports tuple destructuring:
Destructuring also has a by-name form, (local = field, ...), that pulls each element from a named field rather than by position; the positional and by-name forms are covered with pattern matching.
optional types
A type followed by ? is an optional type: a value of T? can be present or absent. The same type written without the ? is non-optional, and a non-optional value is always there.
The postfix ? operator tests whether an optional has a value. A plain if x? narrows x to its non-optional form inside the branch, so the value reads directly:
name is Alice
! reads the value out where narrowing hasn't already done it, but is rarely needed: if let tests an optional and reads its value into a local variable in one step (see control flow).
Optional types work for reference and value types alike. A value-type optional like int? holds either a value or nothing, and you don't construct it explicitly: a plain value where an optional is expected widens automatically, and null marks the absent case:
A non-optional type never holds the absent case, so a T? is not assignable to a T. The compiler rejects it rather than warning:
To pass a T? where a T is wanted, make the value present first: narrow it with if x? or if let, assert it with x! (which throws when absent), or supply a fallback with x ?? other:
found
Reading a member through an optional not known to be present draws a null-deref warning; x?.y, x.has_value, x!, and if let are the warning-free routes. Applying !, ?, or ?. to a value already known to be present warns that the operator is redundant, and ! on a value that was never optional is an error. Each warning has a slug you can silence with @suppress("<slug>") per declaration, per file, or across the project.
The ?? operator supplies a fallback: a ?? b is a when it is present, otherwise b, and b is evaluated only when needed. It is right-associative, so a ?? b ?? c tries each in turn, and the result stays optional until a non-optional value closes the chain:
hello, stranger
The ?. operator reads a member only when the receiver is present: a?.b is b when a is present, otherwise the absent case. The result is always optional, and ?. chains, so a whole access path folds down to one optional. Only field and property access compose with ?.; a method call needs an if a? guard first.
name: unknown
These are the basic data types available in ghūl. The language also supports more advanced types such as classes, structs, traits, enums, and unions, which will be covered in later sections of the documentation.
type conversions
ghūl does not perform implicit type conversion (coercion) between scalar types; all scalar type conversions must be explicitly cast. However, ghūl supports polymorphic behavior by allowing upcasting, where instances of derived classes or interfaces can be automatically coerced to compatible ancestor types in the class/interface hierarchy.
variables
ghūl has three kinds of variables: locals declared within the body of a function or method, function or method arguments and variables captured by a function literal.
locals
Local variables are declared with let followed by the variable name, an optional explicit type, and an initializer:
arguments
Arguments will be covered in detail with functions and methods, but the basic form is the argument name followed by its type.
captured variables
Variables captured by a function literal will be covered with function literals. They are not explicitly declared but inferred from each function literal's body.
scope
The scope of all variable definitions is from the point of declaration to the end of the innermost block that contains the declaration. Blocks will be covered later, but generally a block is a control flow statement or a function or method body.
type inference and explicit types
ghūl infers the type of a local variable from its initializer. An explicit type can be given alongside; it's a compile time error if the initializer is not assignment compatible with it.
literals
Literal expressions represent fixed values of a specific type.
operators and expressions
arithmetic operators
comparison and logical operators
assignment
variables and properties can be updated via assignment statements
i = 10, s = Hello World!, thing.property = 20