Penguin

Differences between current version and revision by previous author of RPN.

Other diffs: Previous Major Revision, Previous Revision, or view the Annotated Edit History

Newer page: version 2 Last edited on Tuesday, August 13, 2002 10:21:38 am by CraigMckenna
Older page: version 1 Last edited on Monday, August 12, 2002 11:38:25 pm by PerryLorier Revert
@@ -3,7 +3,7 @@
 The idea of putting your operators after your arguments. Arguments are "pushed" onto a stack, and an operator pop's off the required arguments, computes the result and pushes it back onto the stack. For example: 
  
 3 1 2 + * 
  
-leaves 6 on the stack. Note that [RPM ] doesn't require any brackets. 
+leaves 6 on the stack. Note that [RPN ] doesn't require any brackets. 
  
 Compare InfixNotation, PrefixNotation