我写了一个单元,如下:
unit Unit2;
interface
 procedure hello;
implementation
 procedure hello;
   begin
     showmessage('Hi,beginner!');
   end;
end.
现在有一个UNIT1单元,内有BUTTON1,当我点击BUTTON1时,调用hello过程,请问我应该如何去引用呢,我在UNIT1的单元中的implementation下写了uses unit2,但试运行时出现了hello没有定义.另外showmessage()应引用什么单元?