RPN.2 \ Comp \ comp.rpn -- some computer science related functions. \ Copyright (C) 1999 Eric Laroche. \ @title "Comp" \ @author Eric Laroche \ @version @(#)$Id: comp.rpn,v 1.2 1999/05/22 01:19:09 laroche Exp $ \ This program is free software; \ you can redistribute it and/or modify it. \ This program is distributed in the hope that it will be useful, \ but WITHOUT ANY WARRANTY; without even the implied warranty of \ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ kilo [k] #'1024' ; \ shift right [r] Ck/ ; \ shift left [l] Ck* ; \ ln2 [b] 2l ; "Comp" \ convert to larger measures "[k" Cr ; "M" CrCr ; "G" CrCrCr ; "T]" CrCrCrCr ; ~ \ convert to smaller measures "[k" Cl ; "M" ClCl ; "G" ClClCl ; "T]" ClClClCl ; ~ "lg" blCb/ ; "e2" Cb*e ; "hex" #'16'Ub ; "dec" #'10'Ub ;