Create App.php

This commit is contained in:
therselman 2017-06-28 01:20:59 +02:00 committed by GitHub
parent cdfab0e6ab
commit 72961416cb

11
src/App.php Normal file
View File

@ -0,0 +1,11 @@
<?php
namespace Twister;
class App
{
function run()
{
echo 'Hello World';
}
}