summaryrefslogtreecommitdiff
path: root/test/call1.lm
blob: 82f6c761676388c746a52515767beca5a832fd77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
##### LM #####
int f1( i: int j: int )
{
	return i + j
}

int main()
{
	print( f1( 
		f1( f1( 1 1 ) f1( 1 1 ) )
		f1( f1( 1 1 ) f1( 1 1 ) )
	) '\n' )
}

main()
##### EXP #####
8