installer: Migration to the main SDK repository for the Installer of 0.44
[sdk] / installer / coursework / Chapter 2 - Variables and Data Types / Lab2.5 / variables.ec
1 class VariablesApp : Application
2 {
3    void Main()
4    {
5       int a, b;
6       float phi = 1.618f;
7       char comma = ',';
8       String h = "hello", w = "world";
9       PrintLn("The value of a was ", a);
10       a = 1234;
11       PrintLn("After the assignment, a is now ", a);
12       PrintLn("The value of b was ", b);
13       b = a;
14       PrintLn("After the assignment, b is now ", b);
15       PrintLn("phi = ", phi, ", more roughly ", (int)(phi * 10 + 0.5)/10.0f);
16       PrintLn(h, comma, " ", w);
17
18       system("pause");
19    }
20 }