ActionsLike0
Feature #16746
closedEndless method definition
Description
Ruby syntax is full of "end"s. I'm paranoid that the ends end Ruby. I hope Ruby is endless.
So, I'd like to propose a new method definition syntax.
def: value(args) = expression
As you see, there is no "end".
Examples.
def: hello(name) =
puts("Hello, #{ name }")
hello("endless Ruby") #=> Hello, endless Ruby
def: inc(x) = x + 1
p inc(42) #=> 43
x = Object.new
def: x.foo = "FOO"
p x.foo #=> "FOO"
def: fib(x) =
x < 2 ? x : fib(x-1) + fib(x-2)
p fib(10) #=> 55
Limitations.
-
def: foo x = x
is invalid; the parentheses for formal arguments are mandatory. -
private def: foo = x
is invalid; this method definition cannot be an method argument.
A patch is attached. No conflicts.
Files
Updated by shyouhei (Shyouhei Urabe) about 5 years ago
- Related to Feature #5054: Compress a sequence of ends added
Updated by shyouhei (Shyouhei Urabe) about 5 years ago
- Related to Feature #5065: Allow "}" as an alternative to "end" added
Updated by shyouhei (Shyouhei Urabe) about 5 years ago
- Related to Feature #12241: super end added
Updated by mame (Yusuke Endoh) about 5 years ago
Updated by mame (Yusuke Endoh) about 5 years ago
- Assignee set to nobu (Nobuyoshi Nakada)
- Status changed from Open to Assigned
ActionsLike0