ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
HelloWorld.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
30class HelloWorld extends Base
31{
32 public function enter(): int
33 {
34 echo "entry point \"" . $this->getName() . "\" says: \"Hello World!\"\n";
35 return 0;
36 }
37}
A simple entrypoint that just says hello, for testing and documentation purpose.
Definition: HelloWorld.php:31
enter()
Pass program execution to this entry point.
Definition: HelloWorld.php:32