First official version of Cheesecake is ready. It has been already uploaded to PyPI, so all you need to do is:
easy_install Cheesecake
Let the bugreports flow! :-)
First official version of Cheesecake is ready. It has been already uploaded to PyPI, so all you need to do is:
easy_install Cheesecake
Let the bugreports flow! :-)
Don’t even dare to mention now that Python is the only one that have the whitespace quirks…
#!/usr/bin/ruby
def a(x=4)
x+2
end
b = 1
puts a + b # => 7
puts a+b # => 7
puts a+ b # => 7
puts a +b # => 3 !!!
puts b + a # => 7
puts b+a # => 7
puts b+ a # => 7
puts b +a # => 7