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