Logo

Programming-Idioms

History of Idiom 185 > diff from v13 to v14

Edit summary for version 14 by pokoika:
New Ruby implementation by user [pokoika]

Version 13

2019-09-26, 21:15:40

Version 14

2019-09-26, 21:49:17

Idiom #185 Execute function in 30 seconds

Schedule the execution of f(42) in 30 seconds.

Idiom #185 Execute function in 30 seconds

Schedule the execution of f(42) in 30 seconds.

Extra Keywords
future
Extra Keywords
future
Code
Thread.new do
  sleep 30
  f(42)
end