@MQuy
Topic: Ruby Block, Lambda & Proc
Closure is the combination of function and environment
name = 'Hello Closure' closure = -> { puts name } closure.call
closure = -> { puts name } name = 'Hello Closure' closure.call
By Minh Quy