mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-04-28 19:13:48 +00:00
10 lines
251 B
Ruby
10 lines
251 B
Ruby
def yield_name(name)
|
|
puts "In the method! Let's yield."
|
|
yield name
|
|
puts "Block complete! Back in the method."
|
|
end
|
|
|
|
yield_name("Eric") { |name| puts "My name is #{name}." }
|
|
|
|
# Now call the method with your name!
|
|
yield_name("jared"){|m| puts "ok"} |