Extensions · NetLogo/NetLogo Wiki · GitHub
https://github.com/NetLogo/NetLogo/wiki/Extensions
GitHub - NetLogo/Table-Extension: hash table extension bundled with NetLogo
https://github.com/NetLogo/Table-Extension
extensions [table]
to setup
let dict table:make
table:put dict "turtle" "cute"
table:put dict "bunny" "cutest"
print dict
print table:length dict
print table:get dict "turtle"
print table:keys dict
end