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