Control Structures: Difference between revisions

m
(→‎C++: Fixing for_each formatting)
Line 140:
===if-then-else===
'''Compiler:''' [[OCaml]] 3.09
let condition = true
 
if condition then
()//do something
else
()//do something else
 
===match-with===