Is def greet; puts "hello"; end the only way to define a method on one line in Ruby?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can avoid the need to use semicolons if you use parentheses:
|
|||
|
|
The semicolon is the inline statement terminator for Ruby Or you can use the
|
|||||
|
|
|
Another way:
May be used if you don't want to enter new scope for method while defining it. |
|||||||
|
|
Just give the full fresh answer: In general avoid single-line methods. Although they are somewhat popular in the wild, there are a few peculiarities about their definition syntax that make their use undesirable. At any rate - there should no more than one expression in a single-line method.
One exception to the rule are empty-body methods.
From bbatsov/ruby-style-guide. |
|||
|
|
|
Yet another way:
|
|||||
|