What's in a Name?

At this point, an example is probably in order. If I say,

 
  [While It's True That]
    [Target of] next 
    [Is Not Equal to] [Null Value]
  [Then Do the Following]
    [Increment] count [End Command]
    current [equals] next [End Command]
    next [equals] current 
    [Right Arrow] [End Command]
  [End Block]

DragonDictate will type

 
  while (*next != NULL ) {
    ++count;
    current = next;
    next = current->next;
  }

next


Return to the outline/title page

Return to At A Word home page

This document last modified on 1/10/2002

Questions? contact web@ataword.com