<?php
namespace nur\sery\php\content\impl;
use nur\sery\php\content\IPrintable;
class APrintable implements IPrintable {
function print(): void {
echo "<p>printable</p>";
}