mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
f84c8ea629
Signed-off-by: Wolfgang Bumiller <wry.git@bumiller.com>
18 lines
236 B
C++
18 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);
|
|
}
|