summaryrefslogtreecommitdiff
path: root/test/func2.lm
blob: 75de72d1378387ced0d4625f9d4fc89d06401356 (plain)
1
2
3
4
5
6
7
8
9
##### LM #####
int f( I: int Str: str )
{
	print( I ' ' Str '\n' )
}

f( 50 'hello world' )
##### EXP #####
50 hello world