from interpreter import INTERP_OK
from emccannon import MESSAGE

def g886(self, **words):
	for key in words:
		MESSAGE("word '%s' = %f" % (key, words[key]))
	if words.has_key('p'):
		MESSAGE("the P word was present")
	MESSAGE ("comment on this line: '%s'" % (self.blocks[self.remap_level].comment))
return INTERP_OK