Concatenates the inputs together and reports the result as a string.
show word "tur" "tle" => "turtle" word "a" 6 => "a6" set directory "c:\\foo\\fish\\" show word directory "bar.txt" => "c:\foo\fish\bar.txt" show word [1 54 8] "fishy" => "[1 54 8]fishy" show (word 3) => "3" show (word "a" "b" "c" 1 23) => "abc123"
Take me to the full NetLogo Dictionary