Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Ruby
def clock 
  t = Time.now
  yield
  Time.now - t
end

d = clock{ f }
(time (f))

New implementation...
< >
programming-idioms.org