mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
12 lines
202 B
C++
12 lines
202 B
C++
|
void main() {
|
||
|
float a = 012;
|
||
|
float b = 0204;
|
||
|
float c = 076663;
|
||
|
float d = 0777;
|
||
|
|
||
|
print(ftos(a), "\n");
|
||
|
print(ftos(b), "\n");
|
||
|
print(ftos(c), "\n");
|
||
|
print(ftos(d), "\n");
|
||
|
}
|