Skip to content

Instantly share code, notes, and snippets.

@uestla
uestla / project-euler.php
Last active January 12, 2024 21:13
Project Euler - solutions written in PHP
<?php
declare(strict_types = 1);
final readonly class solution {
public function __construct(
public int $n,
public string $info,
) {}