Ruby語言入門之Hello world

gobitan發表於2017-06-20
Ruby語言入門之Hello world
作者:家輝,日期:2017-06-20,CSDN部落格:http://blog.csdn.net/gobitan

摘要:Ruby是松本行弘於1995年釋出的一門物件導向的指令碼語言。之前一直知道這門語言,但從未真正近距離接觸它。這次因peatio(an open-source assets exchange)是用Ruby寫的,為了研究peatio而學習Ruby,先來個Hello world吧!

第一步:環境搭建
注:以win7環境為例
[1] 先下載Ruby語言安裝包,windows環境採用RailsInstaller安裝,可在http://railsinstaller.org/en下載。但網速超級慢,然後我在其他地方找到了相同版本的安裝包railsinstaller-3.2.1.exe,大約108M左右。
[2] 雙擊railsinstaller-3.2.1.exe,一路預設安裝至完成。
[3] 進入 cmd命令列,輸入ruby -v,可以得到如下結果:
C:\Users\dennis>ruby -v
ruby 2.2.6p396 (2016-11-15 revision 56800) [i386-mingw32]

第二步:編寫helloruby.rb程式
helloruby.rb原始碼如下:
print("Hello, world!")

將該原始碼儲存到目錄:C:\Users\dennis\Desktop\helloruby.rb

第三步:執行helloruby.rb
進入cmd命令列,進入到Desktop目錄,然後執行"ruby helloruby.rb"命令!
C:\Users\dennis>cd C:\Users\dennis\Desktop

C:\Users\dennis\Desktop>ruby helloruby.rb
Hello, world!
C:\Users\dennis\Desktop>


參考資料:
[1] 《Ruby基礎教程(第4版)》

相關文章