summaryrefslogtreecommitdiff
path: root/test/cases/colm.d/func2.lm
blob: ee773e2a76b8a43a3875a56c29a1662068a68379 (plain)
1
2
3
4
5
6
7
8
int f( I: int, Str: str )
{
	print( I, ' ', Str, '\n' )
}

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