mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 19:28:13 +02:00
no message
This commit is contained in:
parent
a4df8f9124
commit
b58b4f29df
17
tests/webtbs/tw3765.pp
Normal file
17
tests/webtbs/tw3765.pp
Normal file
@ -0,0 +1,17 @@
|
||||
{ Source provided for Free Pascal Bug Report 3765 }
|
||||
{ Submitted by "Andrew Haines" on 2005-03-09 }
|
||||
{ e-mail: andrewd207@aol.com }
|
||||
program Project1;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
uses
|
||||
Classes, SysUtils;
|
||||
var
|
||||
AName, ANumber, ABoolean: Variant;
|
||||
begin
|
||||
AName := 'John Smith';
|
||||
ANumber := 12345;
|
||||
ABoolean := True;
|
||||
WriteLn('Name=',AName, ' Number=', ANumber, ' Boolean=',ABoolean);
|
||||
end.
|
Loading…
Reference in New Issue
Block a user