aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/TableAddr.php
blob: e41eef1cf1d764d60aa536f68a1dce737f99514c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Execution;

final readonly class TableAddr
{
    public function __construct(
        public int $value,
    ) {
    }
}