Created
October 27, 2010 18:01
-
-
Save fabiokung/649587 to your computer and use it in GitHub Desktop.
fork and copy on write behavior
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
n = 10 | |
fork do | |
n = 20 | |
puts n #=> 20 | |
end | |
fork do | |
n = 30 | |
puts n #=> 30 | |
end | |
puts n #=> 10 | |
fork do | |
puts n #=> 10 | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$n = 10 | |
fork do | |
$n = 20 | |
puts $n #=> 20 | |
end | |
fork do | |
$n = 30 | |
puts $n #=> 30 | |
end | |
puts $n #=> 10 | |
fork do | |
puts $n #=> 10 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment