higem.pas 479 B

12345678910111213141516171819202122232425
  1. {
  2. Copyright (c) 2017 Karoly Balogh
  3. Simple Alert Form
  4. Example program for Free Pascal's Atari TOS bindings
  5. This example program is in the Public Domain under the terms of
  6. Unlicense: http://unlicense.org/
  7. **********************************************************************}
  8. {$APPTYPE GUI}
  9. program higem;
  10. uses
  11. aes;
  12. begin
  13. appl_init;
  14. form_alert(1,'[4][Hi Atari GEM World!|'+
  15. '|This is Free Pascal here.][Cool]');
  16. appl_exit;
  17. end.