this one should be simple, but..
i would like to define a string in Netlogo which I can then send to the 'run' command. The string needs to include double quotes.
the code below gives "visit Paris"
but I want "visit "Paris" "
''' to setup
clear-all
let str "Paris"
let to-do (word "visit " str)
show to-do
; gives "visit Paris"
end '''
Netlogo Help claims that I should escape the double quote with a backslash, but this does not seem to work, at least in Netlogo 6.2.
any help? thanks in advance