9 lines
93 B
Text
9 lines
93 B
Text
def yes() -> bool {
|
|
return true;
|
|
}
|
|
|
|
const bool TRUE = yes();
|
|
|
|
def main() {
|
|
return;
|
|
}
|