mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-30 15:41:12 +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();
|
|
}
|