This commit is contained in:
Rodrigo Rodriguez 2024-08-31 13:52:55 -03:00
parent ce733e3d80
commit 177c15809a

View file

@ -91,8 +91,6 @@ To organize the instructions functionally, I'll group them into five categories:
| NEW OBJECT | Creates a new object to be used with REST calls. | <pre>data = NEW OBJECT <br/> data.color = "blue" <br/> TALK "New object created."</pre> | | NEW OBJECT | Creates a new object to be used with REST calls. | <pre>data = NEW OBJECT <br/> data.color = "blue" <br/> TALK "New object created."</pre> |
| NEW ARRAY | Creates a new array. | <pre>data = NEW ARRAY <br/> data[0] = "red" <br/> TALK "New array created."</pre> | | NEW ARRAY | Creates a new array. | <pre>data = NEW ARRAY <br/> data[0] = "red" <br/> TALK "New array created."</pre> |
```
### Internal Variables and Functions. ### Internal Variables and Functions.