summaryrefslogtreecommitdiff
path: root/tests/exec/arith1.cpp
blob: 2280f768e1ecfc1a676e8f943a84d975f58e8b65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <iostream>

int main() {
  int x = 41;
  std::cout << "x = " << x << "\n";
  x = x+1;
  std::cout << "x = " << x << "\n";
  x = 2*x;
  std::cout << "x = " << x << "\n";
  x = 2*x + 3;
  std::cout << "x = " << x << "\n";
  x = 1 - 2*x;
  std::cout << "x = " << x << "\n";
}