1 /* ****************************************************** 2 * * 3 * * 4 * Copyright (c) 1972 by Massachusetts Institute of * 5 * Technology and Honeywell Information Systems, Inc. * 6 * * 7 * * 8 ****************************************************** */ 9 10 cxp1_: proc (base, exponent) returns (complex float bin (27)); 11 12 dcl base complex float bin (27), 13 f complex float bin (63), 14 exponent fixed bin (17); 15 16 17 f = base; 18 return (f ** exponent); 19 20 end cxp1_;