~ubuntu-branches/ubuntu/vivid/inform/vivid

« back to all changes in this revision

Viewing changes to html/answers2/answer78.html

  • Committer: Bazaar Package Importer
  • Author(s): Jan Christoph Nordholz
  • Date: 2008-05-26 22:09:44 UTC
  • mfrom: (2.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080526220944-ba7phz0d1k4vo7wx
Tags: 6.31.1+dfsg-1
* Remove a considerable number of files from the package
  due to unacceptable licensing terms.
* Repair library symlinks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<HTML><HEAD><TITLE>Answer to Exercise 78</TITLE></HEAD>
2
 
<BODY BGCOLOR="#FFFFFF">
3
 
<TABLE><TR><TD Valign="top"><IMG SRC="../icons/exercise.gif" ALT="??"><TD bgcolor="#FAA89B"><B>ANSWER TO EXERCISE 78</B><TR><TD><TD>
4
 
<P>
5
 
 
6
 
 
7
 
(See the <TT>NounDomain</TT> specification in <A HREF="sectionA9.html">Appendix A9</A>.)  This routine passes
8
 
on any <TT>REPARSE_CODE</TT>, as it must, but keeps a matched object in
9
 
its own <TT>third</TT> variable, returning the 'skip this text' code to
10
 
the parser.  Thus the parser never sees any third parameter.
11
 
<PRE>
12
 
Global third;
13
 
[ ThirdNoun x;
14
 
  x=NounDomain(player,location,0);
15
 
  if (x==REPARSE_CODE) return x; if (x==0) return -1; third = x;
16
 
  return 0;
17
 
];
18
 
</PRE>
19
 
 
20
 
</TABLE>
21
 
<HR>Back to <A HREF="../section27.html#ex78">the exercise in section 27</A><HR>
22
 
<SMALL><I>Mechanically translated to HTML from third edition as revised 16 May 1997. Copyright &#169; Graham Nelson 1993, 1994, 1995, 1996, 1997: all rights reserved.</I></SMALL></BODY></HTML>