maybe i should start fact-checking my own docs

This commit is contained in:
suchmememanyskill 2020-05-15 19:19:57 +02:00 committed by GitHub
parent 5e5a979b6b
commit 84b4e180d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -115,6 +115,6 @@ With the release of TegraExplorer v1.5.2, there has been 1 new feature implement
printf() now can print multiple variables. `printf("This ", "Is", $Pretty, @Neat)` is valid syntax now
#### 12/04/2020
With the release of TegraExplorer v1.5.1, there has been some breaking changes. `?LOOP` and `goto(?LOOP)` is no longer valid syntax. Replace this with `@LOOP = getLocation()` and `goto(@LOOP)`.
With the release of TegraExplorer v1.5.1, there has been some breaking changes. `?LOOP` and `goto(?LOOP)` is no longer valid syntax. Replace this with `@LOOP = getPosition()` and `goto(@LOOP)`.
Other than this, `@check = check(1, "==", 1) if (@check) {}` can be simplified to `if (1, == , 1) {}`. For `math()` functions, you don't have to enclose operators in "" anymore (just like check/if), like `@math = math(1, + , 1)`