Open eriktorbjorn opened 4 years ago
>COUNT HANDS You have two. >COUNT FEET You only see one.
That's because HANDS-F handles the COUNT action:
HANDS-F
COUNT
(<VERB? COUNT> <TELL "You have "> <COND (<NOUN-USED? ,W?FINGERS ,W?FINGER> <TELL "ten">) (T <TELL "two">)> <PRINT ,PERIOD> <RTRUE>)
While FEET-F does not. If we want to add it, I guess we should add a similar special case for counting toes as there already is for counting fingers.
FEET-F
That's because
HANDS-F
handles theCOUNT
action:While
FEET-F
does not. If we want to add it, I guess we should add a similar special case for counting toes as there already is for counting fingers.