10 lines
102 B
Text
10 lines
102 B
Text
enum Color
|
|
Red,
|
|
Green,
|
|
Blue,
|
|
end
|
|
|
|
fn main() -> int do
|
|
let c = Color::Red();
|
|
0
|
|
end
|