Compiles
Inner classes (Sort of), by DivineTraveller:
data_type |
Questionmarks ahoy! And a mob that is a list.
mob/proc/Test(?) { |
Zoidberg!
mob/proc/zoidberg(;;;;;;;;;) { |
The above actually doesn't crash, it just outputs nothing for ?.name.
Doesn't compile, but throws funny stuff at you
var/mob/bobby/hi[5]; |
Gives:
Template.dm:22:error: hi: undefined type: hi
Template.dm:21:warning: hi: variable defined but not used
Without assignment (hi[1] = 5), it compiles. Any reference to the variable, and DM blows up.
var/mob/hi[5]; |
Works fine.
Zoidberg returns!
/() |
Gives:
Template.dm:29:error: bad embedded expression [()]
It seems to compile anyway, and outputs "type]" on the world < "[().type]" line.
Post more quirks, if you can find them / know of any ;)