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