测试代码

unit Unit1;
interface
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs;
type
  TForm1 = class(TForm)
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;
var
  Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
end;
end.

//嵌入脚本的代码放在页面最后一行

//调用方法:

Delphi 代码
C/C++ 代码
JavaScript 代码
C# 代码
汇编代码

posted on 2020-11-01 00:25  癫狂编程  阅读(207)  评论(0编辑  收藏  举报

导航

好的代码像粥一样,都是用时间熬出来的