8 lines
124 B
Plaintext
8 lines
124 B
Plaintext
vertex main :: () {
|
|
x : float = 2.0;
|
|
y : float = 5.0;
|
|
z : float = 10.0;
|
|
|
|
w : float = (x * y) + y * (z - x / (y * x));
|
|
}
|