NetLogo / NW-Extension

This is the NetLogo Network Extension. For general information about NetLogo, see:
http://ccl.northwestern.edu/netlogo/
Other
62 stars 25 forks source link

nw:save-graphml file name #148

Closed deryc closed 9 years ago

deryc commented 9 years ago

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.

nicolaspayette commented 9 years ago

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")