Jump to content

Talk:EGL (programming language)

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 62.90.13.57 (talk) at 07:00, 19 May 2022 (is an edit is needed?: new section). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
WikiProject iconComputing Unassessed
WikiProject iconThis article is within the scope of WikiProject Computing, a collaborative effort to improve the coverage of computers, computing, and information technology on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
???This article has not yet received a rating on Wikipedia's content assessment scale.
???This article has not yet received a rating on the project's importance scale.

is an edit is needed?

I am new to EGL, was introduced to it today I take a look at the "Article" and see the following example

   function addEmployee(emp Employee in) returns (boolean)
   	try
   		add remp;
   		return (true);
   	onException (ex AnyException)
   		return (false);
   	end
   end

to my understanding, the function accepts a variable "emp" and the add command tries to add "remp", shouldn't it be "remp" or "emp" in both places ? (the function declaration and the add command)