Skip to content

Instantly share code, notes, and snippets.

@thyseus
Created January 25, 2017 08:28
Show Gist options
  • Save thyseus/c1478f1f0a92fa72dc5acc50dce267da to your computer and use it in GitHub Desktop.
Save thyseus/c1478f1f0a92fa72dc5acc50dce267da to your computer and use it in GitHub Desktop.
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