]> ruin.nu Git - proglang.git/blob - examples/var
moved comments to examples
[proglang.git] / examples / var
1 /*
2 Tests simple variable assignments and expressions.
3 */
4 int a = 3;
5 int b = a - 5;
6 int c = a + b*7;
7 bool d = a == b;