<?php

namespace HelloWorld;

final class HelloWorld {
	public static function printHello(): string {
		return "Hello World!";
	}
}