Advertisement
MadCortez

Untitled

Mar 28th, 2021
466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.19 KB | None | 0 0
  1. library MyDll;
  2.  
  3. uses
  4.   System.SysUtils,
  5.   System.Classes,
  6.   VCL.Dialogs;
  7.  
  8. {$R *.res}
  9.  
  10. procedure ShowAns(Ans: String);
  11. begin
  12.    ShowMessage(Ans);
  13. end;
  14. exports ShowAns;
  15.  
  16. begin
  17. end.
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement