A simple function returning a table with a `tostring` metamethod for displaying the name of the unique identifier. ``` unique = (name) -> setmetatable {}, __tostring: -> return name running = unique "running" ```
A simple function returning a table with a
tostringmetamethod for displaying the name of the unique identifier.