diff --git a/playground/Demo10/Main.snow b/playground/Demo10/Main.snow
index 0627e12..de91d63 100644
--- a/playground/Demo10/Main.snow
+++ b/playground/Demo10/Main.snow
@@ -1,7 +1,7 @@
function: main
return_type: int
body:
- declare res: boolean = 8b == 7b
+ declare res: boolean = 8L > 7L
if res then
return 131
end if
diff --git a/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICECommand.java b/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICECommand.java
index 6e923af..fc1636e 100644
--- a/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICECommand.java
+++ b/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICECommand.java
@@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
*
Specific behavior:
*
- * - Pops two integers from the virtual machine stack.
- * - If the two integers are equal, jumps to the target command.
+ * - Pops two int32 from the virtual machine stack.
+ * - If the two int32 are equal, jumps to the target command.
* - Otherwise, the program continues with the next command.
*
*/
diff --git a/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICGCommand.java b/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICGCommand.java
index a339313..574151e 100644
--- a/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICGCommand.java
+++ b/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICGCommand.java
@@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* Specific behavior:
*
- * - Pops two integers from the virtual machine stack.
- * - If the first integer is greater than the second, jumps to the target command.
+ * - Pops two int32 from the virtual machine stack.
+ * - If the first int32 is greater than the second, jumps to the target command.
* - Otherwise, the program continues with the next command.
*
*/
diff --git a/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICGECommand.java b/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICGECommand.java
index 3cfe02d..8f28127 100644
--- a/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICGECommand.java
+++ b/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICGECommand.java
@@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* Specific behavior:
*
- * - Pops two integers from the virtual machine stack.
- * - If the first integer is greater than or equal to the second, jumps to the target command.
+ * - Pops two int32 from the virtual machine stack.
+ * - If the first int32 is greater than or equal to the second, jumps to the target command.
* - Otherwise, the program continues with the next command.
*
*/
diff --git a/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICLCommand.java b/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICLCommand.java
index ec3d413..e1909e9 100644
--- a/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICLCommand.java
+++ b/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICLCommand.java
@@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* Specific behavior:
*
- * - Pops two integers from the virtual machine stack.
- * - If the first integer is less than the second, jumps to the target command.
+ * - Pops two int32 from the virtual machine stack.
+ * - If the first int32 is less than the second, jumps to the target command.
* - Otherwise, the program continues with the next command.
*
*/
diff --git a/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICLECommand.java b/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICLECommand.java
index 4e6c007..0410d1f 100644
--- a/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICLECommand.java
+++ b/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICLECommand.java
@@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* Specific behavior:
*
- * - Pops two integers from the virtual machine stack.
- * - If the first integer is less than or equal to the second, jumps to the target command.
+ * - Pops two int32 from the virtual machine stack.
+ * - If the first int32 is less than or equal to the second, jumps to the target command.
* - Otherwise, the program continues with the next command.
*
*/
diff --git a/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICNECommand.java b/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICNECommand.java
index 08a46a9..b921efc 100644
--- a/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICNECommand.java
+++ b/src/main/java/org/jcnc/snow/vm/commands/control/int32/ICNECommand.java
@@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* Specific behavior:
*
- * - Pops two integers from the virtual machine stack.
- * - If the two integers are not equal, jumps to the target command.
+ * - Pops two int32 from the virtual machine stack.
+ * - If the two int32 are not equal, jumps to the target command.
* - Otherwise, the program continues with the next command.
*
*/