home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / language / j32.sit / tut / TUT2.JS < prev    next >
Encoding:
Text File  |  1991-06-13  |  501 b   |  26 lines

  1.                        GRAMMAR C
  2.    fahrenheit =. 50
  3.    (fahrenheit - 32) * 5 % 9
  4. 10
  5.    prices =. 3 1 4 2
  6.    orders =. 2 0 2 1
  7.    orders * prices
  8. 6 0 8 2
  9.    +/ orders * prices
  10. 16
  11.    +/ \ 1 2 3 4 5
  12. 1 3 6 10 15
  13.    2 3 * / 1 2 3 4 5
  14. 2 4 6  8 10
  15. 3 6 9 12 15
  16.    decr=. - & 1
  17.    decr _1 0 1 2 3
  18. _2 _1 0 1 2
  19.          PARTS OF SPEECH
  20.   50 fahrenheit  Nouns/Pronouns
  21.   + - * % decr   Verbs/Proverbs
  22.   / \            Adverbs
  23.   &              Conjunction
  24.   =.             Verb-to-be
  25.   ( )            Punctuation
  26.