home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / msdos / asmutl / usoftpd.arc / 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.