-- I'm okay with the hint as long as it's for any interface method, not just ICloneable. You can make a ticket for it.
-- Regarding Same, that looks like an actual class name to me like Object, String, Customer, etc. "same" is lowercase in the same fashion as "dynamic", "int", "base", "this", etc.
-- You can do want you want right now, although less compact:
t = .getType
newObject = t()
.getType is a method of System.Object that returns the type of the current instance (whether class or struct). And Cobra lets you instantiate it by calling it with parens.
We still need a portable version since .NET is .getType and JVM is .class. *sigh*
-- We could potentially support "same()" since it is a keyword.
-- Regarding random ideas, they are best discussed here. Then if we come to a consensus, add that to the ticket. And often paste the link of the forum discussion in the ticket in case someone wants to see the original bloody details. That's not a hard rule however. We sometimes *do* discuss things in tickets. I can't say I have clear guidelines at this point.
-- I added tickets for all the cues today.
-- Regarding how tickets work, they are done through a Trac instance which is a web application with wiki, tickets, milestones and Subversion browsing. The user authentication is linked to the discussion forum user table, but you do have to login again. Use your same username and password.
-- You can add comments to tickets. The comments use the same markup language as the wiki pages. I check the list of updated tickets daily so I'll see the comments within 24 hours.
-- I would post samples on the forums first for people to look at. You should be able to use the "Upload attachment" tab below.
-- I can be picky about official samples and how-to's so don't be surprised if I ask for tweaks or even major changes. But don't be shy about sharing code in the forums either. Any old code can be pasted here for sharing or feedback at any time.
HTH