fun mf = () -> int
{

List<int> l = { 1 , 2, 3};
int b = 10;
for (elem in l)
{
b = b+ 3;
int a = print(b);


}

};
