mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
11 lines
202 B
C++
11 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");
|
|
}
|