aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Nums/F64_.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/Nums/F64_.php')
-rw-r--r--src/Execution/Nums/F64_.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Execution/Nums/F64_.php b/src/Execution/Nums/F64_.php
new file mode 100644
index 0000000..c24709e
--- /dev/null
+++ b/src/Execution/Nums/F64_.php
@@ -0,0 +1,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,
+ ) {
+ }
+}