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

« back to all changes in this revision

Viewing changes to html/answers1/answer24.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 24</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 24</B><TR><TD><TD>
4
 
<P>
5
 
 
6
 
Suppose Dan's grammar (but nobody else's) for the "examine''
7
 
verb is to be extended.  His grammar routine should also contain:
8
 
<PRE>
9
 
           if (verb_word == 'examine' or 'x')
10
 
           {   verb_wordnum++; return -'danx,'; }
11
 
</PRE>
12
 
 
13
 
(Note the crudity of this: it looks at the actual verb word, so you
14
 
have to check any synonyms yourself.)  The verb "danx,'' must be
15
 
declared later:
16
 
<PRE>
17
 
Verb "danx," * "conscience" -&#62; Inv;
18
 
</PRE>
19
 
 
20
 
and now "Dan, examine conscience'' will send him an <TT>Inv</TT> order:
21
 
but "Dan, examine cow pie'' will still send <TT>Examine cow_pie</TT> as usual.
22
 
</TABLE>
23
 
<HR>Back to <A HREF="../section16.html#ex24">the exercise in section 16</A><HR>
24
 
<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>