summaryrefslogtreecommitdiff
path: root/old/toy/test.c
blob: 9bbb8a027cedc9700219c9a9793beca7b898bbc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
void foo()
{
}

int do_math(int a)
{
  int y = 7
  int z = 8
  int zz = y
//  zz = x
  int x = a * 5 + 3
}

int multiply(int x, int y)
{
  int res = x * y
}

foo()
do_math(20)
int blu = 20
int res = do_math(blu)
//echo(res)