-
Notifications
You must be signed in to change notification settings - Fork 275
Closed
Labels
al-languagesuggestionThis is either a suggestion of a completely new feature or a fairly big change request.This is either a suggestion of a completely new feature or a fairly big change request.
Description
The current syntax for a simple function is this
local procedure TestMessage2();
begin
message('Published event Event is working!')
end;
Why is there a semicolon after the procedure. this feels really bad while coding.
also, I'd rather have no "begin" and "end". lots of statements work with { }. something like this is makes more sense to me:
local procedure TestMessage2()
{
message('Published event Event is working!')
}
... just my opinion
RafaelKoch, ajkauffmann, nofirm, bvbeek, judecot and 3 moreGallimathias, ReneGubler, pkoutsogilas, StefanMaron, javisoft and 10 more
Metadata
Metadata
Assignees
Labels
al-languagesuggestionThis is either a suggestion of a completely new feature or a fairly big change request.This is either a suggestion of a completely new feature or a fairly big change request.