Turtle and Observer Command

to-delimited-string [list of commands]

Takes a list of instructions (variables, reporters, strings) and separates them with commas and then concatenates them, returning the concatenated string.

Note: This function is helpful in outputting to a spreadsheet program.

Examples:
globals [mystring one]
setone "abc"
setmystring to-delimited-string [one "two"]
The value of mystring is now "abc,two".

Related commands:
to-string