Hy there, i'm a newbie, sorry if my question is silly.

This code is ok:

> var x, y, z = 3
> 
> let a, b, c = 4
> 
> echo(x + y + z + a + b + c)

but this is not:

> var x, y, z = 3
> 
> let a, b, c = 4
> 
> echo(x + y + z + a + b +c)

missing a blank in "+c". Compiler says

> Error: attempting to call routine: 'b'
>     found 'b' of kind 'let'

Why? Thx.

Reply via email to