~bh « nluqo.github.io « games « js - tour - touring some programming systems
about summary refs log tree commit diff stats
path: root/js/games/nluqo.github.io/~bh/61a-pages/Lectures/1.1/plural.scm
blob: 0538d4a7cbf89fd5950540a510b6264c4ace89d9 (plain) (blame)
1
2
3
4
5
6
7
8
(define (plural wd)
  (word wd 's))

(define (plural wd)
  (if (equal? (last wd) 'y)
      (word (bl wd) 'ies)
      (word wd 's)))