Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / components / codetools / tests / laztests / unitdots.main.pas
Size: Mime:
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.