4
1
Fork 0
This repository has been archived on 2019-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
Cheaterliste/test.php
2017-04-01 00:54:08 +02:00

7 lines
183 B
PHP

<?php
// $variable = "cockinator";
// echo 'Die Variable lautet: ' . $variable . ' ♥ ';
$zahl1 = 1;
$zahl2 = '2';
echo $zahl1 . $zahl2 * '34.5' - '100';
?>