Search

You can find the results of your search below.

breeze @computers:arduino
3 Hits, Last modified:
code for when true ... } else { code for when false ... } </code> <code> 100 if ( not condition ) go... for when true ... 190 goto 300 200 code for when false ... 300 continue ... </code> ==== Single Pass Pa... o" will always executed, even if the condition is false. Can you guess why? ==== Named Sections of Code
fgets @snippets:php
1 Hits, Last modified:
"Failed to open ${filename}"); } while ( ( $text = fgets($fh) ) !== false ) { echo $text; } </file>