Re: Interface <> Implementation

2018-03-16 Thread Araq
Nim is not Delphi. You cannot compile and run this.


Interface <> Implementation

2018-03-15 Thread adamlevine
Code: interface

type


TForm2 = class(TForm)
procedure Shaders(var aShaderProgram: glUInt);

...

implementation

procedure TForm2.Shaders; How come it is possible that I can compile and run 
this?