mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-21 02:40:56 +00:00
19 lines
236 B
C++
19 lines
236 B
C++
|
float a = 1000;
|
||
|
float b = 1001;
|
||
|
float c = 1002;
|
||
|
|
||
|
void test(float b) {
|
||
|
float c = 3002;
|
||
|
print(ftos(a), "\n");
|
||
|
print(ftos(b), "\n");
|
||
|
print(ftos(c), "\n");
|
||
|
{
|
||
|
float b = 4001;
|
||
|
print(ftos(b), "\n");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void main() {
|
||
|
test(2001);
|
||
|
}
|