All built-in types available in Osprey.

Any #

A type that can represent any value. Useful for generic programming but should be used carefully as it bypasses type checking.

Bool #

A boolean type that can be either true or false. Used for logical operations and conditionals.

Int #

A 64-bit signed integer type. Can represent whole numbers from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807.

String #

A sequence of characters representing text. Supports string interpolation and escape sequences.