Scala 3.0.0-M1
github.com191 pointsby cwhy145 comments
def begin(*args):
return args[-1]
begin(
func := lambda x, y: begin(
z := int(input()),
x + y + z
),
func(1, 2)
)
from `https://news.ycombinator.com/item?id=23346534`