Created
January 25, 2017 08:28
-
-
Save thyseus/c1478f1f0a92fa72dc5acc50dce267da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rätsel für Anfänger: | |
$a = false; | |
$b = true; | |
$c = $a or $b; | |
echo $c; | |
Rätsel für fortgeschrittene: | |
floor((0.1+0.7)*10); | |
(Lösung: floor(bcadd(0.1, 0.7, 1) * 10); ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment