type Shape {
Circle { radius: Int }
}
proc main(): void {
name := "bee" // camelCase: uma variável
MAX_RETRIES := 5 // UPPER_CASE: uma constante
shape := Shape.Circle(4) // PascalCase: um tipo e sua variante
echo "{name}, tente até {MAX_RETRIES} vezes, forma={shape}"
}