Difference between revisions of "Then/ru"

From Free Pascal wiki
Jump to navigationJump to search
m (Fixed syntax highlighting)
 
Line 3: Line 3:
 
'''then''' является [[Keyword/ru|ключевым словом]], которому предшествует '''[[If/ru|if]]''' или необязательное ключевое слово '''[[Else/ru|else]]'''
 
'''then''' является [[Keyword/ru|ключевым словом]], которому предшествует '''[[If/ru|if]]''' или необязательное ключевое слово '''[[Else/ru|else]]'''
  
<syntaxhighlight>
+
<syntaxhighlight lang=pascal>
 
if (condition) then  
 
if (condition) then  
 
   (action);
 
   (action);
 
</syntaxhighlight>
 
</syntaxhighlight>
 
<br>
 
<br>
<syntaxhighlight>
+
<syntaxhighlight lang=pascal>
 
if (condition) then  
 
if (condition) then  
 
   (action)
 
   (action)

Latest revision as of 07:04, 1 March 2020

Deutsch (de) English (en) français (fr) русский (ru)

then является ключевым словом, которому предшествует if или необязательное ключевое слово else

if (condition) then 
  (action);


if (condition) then 
  (action)
else 
  (action);


Ключевые слова: begindoelseendforifrepeatthenuntilwhile