Repository URL to install this package:
|
Version:
1.6 ▾
|
unit unitdots.main;
{$mode objfpc}{$H+}
interface
uses
unitdots.dot, unitdots; // unit names (with or without namespaces) win over interface identifiers
// even though the 'unitdots.dot' is left of 'unitdots'
implementation
begin
unitdots.dot.test{declaration:unitdots.dot.test}:=3;
unitdots.dot.foo{declaration:unitdots.dot.foo}:=4;
//unitdots.dot.bar:='5'; fail!
unitdots.my{declaration:unitdots.my}:=false;
end.