Files
presentations/static-analysis/03_scoping.rb
2023-07-13 10:33:43 -04:00

7 lines
47 B
Ruby

x = 1
begin
x = 3
end
->(x) { x + 1 }
puts x