This cell spans two columns | This cell spans two rows | |
Cell 1 | Cell 2 |
This space intentionally left blank
$cool = true; if ($cool) { print("You should learn to code"); foreach ($languages as $language) { learn($language); print($language + " learned!"); } }
$cool = true; if ($cool) { print("You should learn to code"); foreach ($languages as $language) { learn($language); print($language . " learned!"); } }