From bff8c59f39be6127bc60ea74da65a7794a6a8cbf Mon Sep 17 00:00:00 2001
From: 10xJSChad <48174610+10xJSChad@users.noreply.github.com>
Date: Mon, 13 Sep 2021 00:55:15 +0200
Subject: [PATCH] Update README.md
---
README.md | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 11adbf6..e1664dc 100644
--- a/README.md
+++ b/README.md
@@ -76,10 +76,10 @@ var exampleFloatVariable = 5.5
var exampleStringVariable = Hello World!
```
-**mov *variable* *'variable/value'***
+**set *variable* *'variable/value'***
```
-mov exampleIntVariable 50 //Sets the value of exampleIntVariable to 50
-mov exampleIntVariable exampleFloatVariable //Sets the value of exampleIntVariable to the value of exampleFloatVariable
+set exampleIntVariable 50 //Sets the value of exampleIntVariable to 50
+set exampleIntVariable exampleFloatVariable //Sets the value of exampleIntVariable to the value of exampleFloatVariable
```
**add *variable* *'variable/value'***
@@ -108,8 +108,8 @@ rnd exampleIntVariable 0 500 //Sets the value of exampleIntVariable to a random
*Supported operators:* ==, >=, <=, >, <, !=
```
if x == 255 //Checks if x is equal to 255
-mov y x //Sets the value of y to the value of x (255)
-mov x 0 //Sets x to 0
+set y x //Sets the value of y to the value of x (255)
+set x 0 //Sets x to 0
end if //Ends the if statement
```
**func**, **end func**, and **call** //Starts, ends, and calls a function