在RubyInstaller官网下载window版本安装,地址:http://rubyinstaller.org/downloads/
执行安装程序,勾选Add Ruby executables to your PATH,安装完成在cmd上测试ruby -v查看
注意安装路径中不要有空格,否 ...……
############################# Array And Hash #######################
#array with three elements
a =
#access the first element
puts(a)
#set the third element(nil means nothing)
a[2……