aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Nums/F32_.php
blob: 5c7b7491ef11989e7515565b2465b0c8a8275ad8 (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 F32_ extends Num
{
    /**
     * @param F32 $value
     */
    public function __construct(
        public float $value,
    ) {
    }
}