Docs / Overview

1.2 Distinctive Features & Principles

The language design is governed by the axioms of Clarity over Performance (prioritizing readability before premature optimizations), Syntactic Consistency, and Informative Errors (clear error messages with correction suggestions and call stack traces).

Native Interpolation & Special Operators
 1 // Template strings with native interpolation
 2 let nome = "Dryad";
 3 let versao = 1.0;
 4 let mensagem = 'Linguagem: ${nome}, Versão: ${versao}';
 5 
 6 // Double colon namespace operator (::) C++/Rust style
 7 import math;
 8 let cosseno = math::cos(0);

Use of backticks ('${}') for template strings and the :: operator for disambiguation and access to structured namespaces.

Found an error in the spec? Open a PR.
Official Version: 1.0 · May 2026