Method code for $object_lib.get_name()

[Turn on line numbering]
arg obj, @args;
var meth;

// get_name(obj, 'method, [args]) (3rd arg must be a list)
if (type(obj) == 'frob && !valid(frob_class(obj)))
    return toliteral(obj);
if (type(obj) != 'frob && !valid(obj))
    return toliteral(obj);
[(meth ?= 'name), (args ?= [])] = args;
return obj.(meth)(@args);

["// Created 26-Mar-1995 as a part of ColdCore, see: @help Credit"]

the Cold Dark