corx


A statically typed, general-purpose programming language, crafted for simplicity and performance.

"Trust the programmer" - corx








# typeof Operator (approved partially)

Purpose: Allows determining the type of a value or variable at compile time or runtime.

Metadata Needed:

Overhead: Minimal if handled at compile time, but runtime type determination may require embedding type information in variables or objects.


# len Operator (dropped for now)

Purpose: Retrieves the size of arrays (both static and dynamic).

Metadata Needed:

Overhead: A small fixed cost for storing size metadata for dynamic arrays.


# Variadic Functions (approved)

Purpose: Support mixed or same-type arguments with safety and ease.

Metadata Needed:

Overhead: