Conditional structures: Difference between revisions

m
Line 5,100:
isprime `=10^12-11'
999999999989 is prime.</lang>
 
=== if expression ===
When used in a command, '''[https://www.stata.com/help.cgi?if if]''' means the command is to be applied to the data subset for which the if expression is true.
 
<lang stata>clear
set obs 100
count
100
count if mod(_n, 3)==0
33</lang>
 
=={{header|Tcl}}==
1,336

edits