aboutsummaryrefslogtreecommitdiffstats
path: root/examples/cond_return.c
blob: 74bd49370aad30cae47c4b18859af7ccd9e0971e (plain)
1
2
3
4
5
6
7
int f(int y) {
	int x = 5;
	if (y == 21) {
		x = 20;	
	}
	return x;
}