aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Nums/I64.php
blob: 889b8632d86d278e13fa10e4c04fb572a4522a53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Execution\Nums;

use Nsfisis\Waddiwasi\Execution\Num;

final readonly class I64 extends Num
{
    /**
     * @param S64 $value
     */
    public function __construct(
        public int $value,
    ) {
    }
}