aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/ElemAddr.php
blob: e46b54f6a6222c415a0fea0c2a96081c00a6d02f (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 ElemAddr
{
    public function __construct(
        public int $value,
    ) {
    }
}