Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例子:
puts <<BLOCK ... BLOCK
BLOCK 是不与关键字冲突的任何其他标识符。
是的; 你可以——可以使用任何合法的符号或带引号的字符串。
例如,如果你想给它一个爆炸,你必须使用带引号的形式:
pry(main)> s = <<"foo!bar" pry(main)* yo pry(main)* foo!bar => "yo\n" pry(main)> puts s yo
如果它是一个符号,那么你不需要引用它。