type Shape {
Circle { radius: Int }
}
proc main(): void {
name := "bee" // camelCase: a variable
MAX_RETRIES := 5 // UPPER_CASE: a constant
shape := Shape.Circle(4) // PascalCase: a type and its variant
echo "{name}, retry up to {MAX_RETRIES} times, shape={shape}"
}