mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-19 07:09:22 +02:00
14 lines
178 B
ObjectPascal
14 lines
178 B
ObjectPascal
program datamoduletest;
|
|
|
|
{$mode objfpc}
|
|
|
|
uses
|
|
JS, Classes, SysUtils, Web, dmtest, htmlactions, htmleventnames;
|
|
|
|
|
|
|
|
begin
|
|
With TTestModule.Create(Nil) do
|
|
DoSomething;
|
|
end.
|