Skip to content

Instantly share code, notes, and snippets.

@vico93

vico93/Unit1.pas Secret

Created March 26, 2021 02:30
Show Gist options
  • Save vico93/51167f124cace91a128061a48c5ce758 to your computer and use it in GitHub Desktop.
Save vico93/51167f124cace91a128061a48c5ce758 to your computer and use it in GitHub Desktop.
First attempt with Duktape
unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, Duktape.Api in 'Duktape.Api.pas',
Duktape in 'Duktape.pas';;
type
{ TfrmPrincipal }
TfrmPrincipal = class(TForm)
memConsole: TMemo;
private
public
end;
var
frmPrincipal: TfrmPrincipal;
implementation
{$R *.lfm}
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment