Talk:Eiffel (programming language): Difference between revisions

Content deleted Content added
Line 6:
== Archives ==
[[/Archive 1]]
 
== Once routines ==
 
There is a mismatch between the current text and its examples. The text suggests the ''do'' is replaced by ''once'', but the sample reads:
 
shared_object: SOME_TYPE
do
create Result.make (args) -- This creates the object and returns a reference to it through 'Result'
end
 
Should this be:
 
shared_object: SOME_TYPE
once
create Result.make (args) -- This creates the object and returns a reference to it through 'Result'
end
 
Can someone clear up the conflict between description and code sample? [[User:Lulu of the Lotus-Eaters|<span style="color:darkgreen;">LotLE</span>]]×[[User talk:Lulu of the Lotus-Eaters|<span style="color:darkred;font-size:x-small;">talk</span>]] 06:15, 7 September 2006 (UTC)
 
:You are correct. Also, the keyword ''is'' after ''SOME_TYPE'' is missing, which I have added now. [[User:MoA)gnome|MoA)gnome]] 15:01, 11 September 2006 (UTC)
 
::The keyword ''is'' is no longer required by the standard. [[User:83.79.215.69|83.79.215.69]] 11:43, 7 July 2007 (UTC)
 
== keyword ''is'' & ECMA 367 ==