1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-21 08:45:06 -05:00

Made test file nicer.

This commit is contained in:
Raymond 2010-09-11 14:05:28 +02:00
parent 6c40005b17
commit ffe9fd2b2a

View File

@ -1,4 +1,6 @@
program new;
var
Value : string;
begin
ShowMessage('ShowMessage!');
Writeln('MessageBox -> ');
@ -14,4 +16,7 @@ begin
mrIgnore: Writeln('Pressed Ignore');
mrCancel: Writeln('pressed Cancel');
end;
Writeln('InputQuery -> ');
Value := 'Edit.. or not?';
Writeln(format('Result of inputquery = [%s] the value = [%s]',[booltostr(InputQuery('Enter something funny','ENTER HERE',value)),value]));
end.