You may be interested in the getter? macro tho if your intent is to want to be able to do something like foo.happy? outside the type itself. Otherwise the ivar itself will need to be named @happy and referenced as such.
Good catch, this should be a bug in the parser, for the ? end of the method, Crystal follow the rule come from Ruby, in the Ruby, following code raised.
╰──➤ $ ruby 1.cr
1.cr: --> 1.cr
unexpected name for a parameter
> 1 def foo(a? = 100)
> 3 end
1.cr:1: syntax error, unexpected method, expecting ')' (SyntaxError)
def foo(a? = 100)
^~
I’ve yet to read an actual argument against ? in variables though. ! makes sense as it could potentially conflict with stuff like != too, but ? has no such downside.
The argument that’s usually made is “? denotes a method call.”. But why? there’s nothing about ? that’s inherently related to methods. If it’s because of how ruby does it, I don’t think that Crystal has to follow Ruby in everything.
? for boolean values is objectively useful for readability.
As the person who started this thread, I’m giving my humble opinion. I’m not coming from Ruby. But building a Ruby-like language that is also fast was one of the motivations of Crystal IIUC. So it’d be best to not deviate too much from Ruby’s syntax unless there’s obvious benefits, in my opinion.