[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Syntactic sugar for function parameters
- From: "rubanetz" <rubanetz@...>
- Date: Mon, 5 Feb 2007 11:11:03 +0300 (MSK)
>foobar = function() frob() end
What stops you from writing simple assignment?
foobar = frob;
Imho its perfectly safe since functions are immutable.
regards