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