home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / asmutil / usoftpd.zip / PAMAIN.PAS < prev    next >
Pascal/Delphi Source File  |  1987-07-31  |  164b  |  7 lines

  1.  
  2. program Asmtest(input, output);
  3. function Power2(a:integer; b:integer): integer; extern;
  4. begin
  5.     writeln('3 times 2 to the power of 5 is ', Power2(3,5));
  6. end.
  7.