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