. . . 如本例所示:
helloworld.rb:1: syntax error, unexpected '=', expecting $end
:helloworld = "hello ".concat("world")
我想如果我使用 concat 我正在修改字符串“hello”并添加“world”,然后最终将生成的字符串 - “hello world” - 分配给等号左侧的 :helloworld 符号。我认为这是合法的,就像我写的一样:
:helloworld = "hello world"
哦,等等,这也不起作用。(抓头)。