Difference between revisions of "User talk:E-ric"

From Free Pascal wiki
Jump to navigationJump to search
(→‎Break/fr: new section)
 
(E-ric - PLEASE PAY ATTENTION you are editing English pages, not French!)
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Break/fr ==
+
Hi, E-ric!
  
{{Break}}
+
----
 +
You appear to be changing the English page [[Brook for Free Pascal]] into French by mistake. I have reverted your edits. Please create a French page.
  
The reserved word '''break''' is one of the [[Loops|loop commands]]<br>
+
[[User:Trev|Trev]] ([[User talk:Trev|talk]]) 11:58, 30 April 2020 (CEST)
The command is used to exit a loop before its planned end.<br>
 
The '''break''' command can only be used within loops.<br>
 
<br>
 
Example:<br>
 
<syntaxhighlight>
 
var
 
  intI: Integer;
 
  intA: Integer = 50;
 
begin
 
  for intI := 20 to 200 do
 
  begin
 
      ...
 
      if intI = intA then break; // If the condition is satisfied, the loop is terminated
 
      ...
 
  end;
 
end;
 
</syntaxhighlight>
 
  
 +
----
 +
It seems to me you accidentally edited English version of page "Other Firebird libraries" instead French one.
  
== See also ==
+
[[User:FTurtle|FTurtle]] ([[User talk:FTurtle|talk]]) 08:29, 12 May 2017 (CEST)
* [[Reserved words]]
 

Revision as of 11:58, 30 April 2020

Hi, E-ric!


You appear to be changing the English page Brook for Free Pascal into French by mistake. I have reverted your edits. Please create a French page.

Trev (talk) 11:58, 30 April 2020 (CEST)


It seems to me you accidentally edited English version of page "Other Firebird libraries" instead French one.

FTurtle (talk) 08:29, 12 May 2017 (CEST)