public static class DocMethod implements Intrinsic {
public Obj invoke(Context context, Obj left, Obj right) {
String name = right.asString();
// TODO(bob): Hackish, but works.
Multimethod multimethod = context.getModule().getScope()
.lookUpMultimethod(name);
if (multimethod == null) {
System.out.println(
"Couldn't find a method named \"" + name + "\".\n");