NetLogo/NW-Extension

nw:save-graphml file name

Closed this issue · 1 comments

I can't seem to add a random number to my file name with using nw:save-graphml

I've been trying:

nw:save-graphml "test" random 70000 ".graphml"

any help would be much appreciated.

Hi! Thanks for your report, but this is not a NW extension problem. Just use the word primitive to construct your filename:

nw:save-graphml (word "test" random 70000 ".graphml")