Initiale Version

This commit is contained in:
Jan Unger
2016-08-16 21:20:53 +02:00
commit 88cf71d772
10930 changed files with 1708903 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
define('MEINE_KONSTANTE', 'Ein fester Wert');
var_dump(MEINE_KONSTANTE);
const ZWEITE_KONSTANTE = 'Ein weiterer Wert';
var_dump(ZWEITE_KONSTANTE);
const PROGRAMM = 'Hallo Welt';
const VERSION = '1.0.0';
echo 'Programm ' . PROGRAMM . ' in Version ' . VERSION . '.';