All language keywords available in Osprey.
false
Boolean literal representing the logical value false.
fn
Function declaration keyword. Used to define functions with parameters and return types.
import
Import declaration keyword. Used to bring modules and their exports into the current scope.
let
Variable declaration keyword. Used to bind values to identifiers. Variables are immutable by default in Osprey.
match
Pattern matching expression. Used for destructuring values and control flow based on patterns.
true
Boolean literal representing the logical value true.
type
Type declaration keyword. Used to define custom types and type aliases.