The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
Koichi's Brief Ruby Certification

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Red Handed

Posts: 1158
Nickname: redhanded
Registered: Dec, 2004

Red Handed is a Ruby-focused group blog.
Koichi's Brief Ruby Certification Posted: Dec 30, 2005 12:20 PM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Red Handed.
Original Post: Koichi's Brief Ruby Certification
Feed Title: RedHanded
Feed URL: http://redhanded.hobix.com/index.xml
Feed Description: sneaking Ruby through the system
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Red Handed
Latest Posts From RedHanded

Advertisement

Koichi Sasada says if you can predict the correct output of the following, you are a great Ruby hacker. Man, that’s true!

 Const = :top
 class C
   Const = :C
 end

 C.instance_eval %{p Const}
 C.instance_eval  {p Const}
 C.module_eval   %{p Const}
 C.module_eval    {p Const}
 C.class_eval    %{p Const}
 C.class_eval     {p Const}
 eval            %{p Const}
 eval             {p Const}

Even if you don’t get the answers right, I will call you a great Ruby hacker if you can explain it. (As usual: ~sasada.)

Read: Koichi's Brief Ruby Certification

Topic: Up and running. Previous Topic   Next Topic Topic: SwitchTower progress

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use