Inform - Support - Source

Back to List

Inventory
Complete

Backward
Forward

Plain
Coloured
Gaudy

This code
in plain text

Browsing parserm.h

PrintOrRun (lines 4980-4993)

4980  [ PrintOrRun obj prop flag;
4981      if (obj.#prop > WORDSIZE) return RunRoutines(obj,prop);
4982      if (obj.prop == NULL) rfalse;
4983      switch (metaclass(obj.prop)) {
4984        Class, Object, nothing:
4985          return RunTimeError(2,obj,prop);
4986        String:
4987          print (string) obj.prop;
4988          if (flag == 0) new_line;
4989          rtrue;
4990        Routine:
4991          return RunRoutines(obj,prop);
4992      }
4993  ];


Last updated 27 February 2004. The librarian in charge of this page is Graham Nelson (graham@gnelson.demon.co.uk) assisted by C Knight. Please email any comments, suggestions or corrections to cedenqs@inform-fiction.org.