fpc/packages/tosunits/examples/higem.pas
Károly Balogh d2feb00bb0 tosunits: copyright header for the example programs
git-svn-id: trunk@37799 -
2017-12-24 23:49:13 +00:00

26 lines
479 B
ObjectPascal

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