StackOverflow 文件 Ruby Language 教程 常量 定義一個常量 定義一個常量 Created: November-22, 2018 MY_CONSTANT = "Hello, world" # constant Constant = 'This is also constant' # constant my_variable = "Hello, venus" # not constatn 常量名以大寫字母開頭。以大寫字母開頭的所有內容在 Ruby 中都被視為 constant。所以 class 和 module 也是不變的。最佳做法是使用全部大寫字母來宣告常量。 修改常量常量