renamed hcl to hak

This commit is contained in:
2025-09-02 23:58:15 +09:00
parent be77ac8ad2
commit 20d2db0e27
129 changed files with 43690 additions and 43689 deletions

View File

@ -2,10 +2,10 @@ program main;
{$mode objfpc}{$H+}
uses HCL, SysUtils;
uses HAK, SysUtils;
var
x: HCL.Interp = nil;
x: HAK.Interp = nil;
begin
(* System.ParamCount() returns only the number of argumetns except System.ParamStr(0). It is the upper bound to System.ParamStr(). *)
if System.ParamCount() <> 1 then begin
@ -14,7 +14,7 @@ begin
end;
try
x := HCL.Interp.Create(100);
x := HAK.Interp.Create(100);
x.Ignite(0);
x.AddBuiltinPrims();