Skip to content

Instantly share code, notes, and snippets.

@EragonJ
Created January 29, 2010 06:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EragonJ/289506 to your computer and use it in GitHub Desktop.
Save EragonJ/289506 to your computer and use it in GitHub Desktop.
test = 1
puts test.to_s
puts test.class
test = "xx"
puts test.to_s
puts test.class
#結果如下
#ruby test.rb
#1
#Fixnum
#xx
#String
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment