aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Nums/I32.php
blob: fbc6fabf11c9bcd0a636ae9f3a3ab307329e0b93 (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 I32 extends Num
{
    /**
     * @param S32 $value
     */
    public function __construct(
        public int $value,
    ) {
    }
}