Skip to content

Instantly share code, notes, and snippets.

@SethTisue
Created February 15, 2014 02:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SethTisue/9013595 to your computer and use it in GitHub Desktop.
Save SethTisue/9013595 to your computer and use it in GitHub Desktop.
SleepAdd in NetLogo
to-report add [a b]
reset-timer
wait a
wait b
report timer
end
observer> show add 2 2
observer: 4
observer> show add 2 2
observer: 4
observer> show add 2 2
observer: 4
seems pretty reliable, I was expecting a 4.001 in there :-)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment