mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-27 22:22:17 +00:00
15 lines
176 B
C++
15 lines
176 B
C++
void foo() {
|
|
print("hello ");
|
|
}
|
|
|
|
[[accumulate]] void foo() {
|
|
print("accumulation ");
|
|
}
|
|
|
|
[[accumulate]] void foo() {
|
|
print("world\n");
|
|
}
|
|
|
|
void main() {
|
|
foo();
|
|
}
|