From d81ee1962822cf32f8ab8a25a891e1a3219a169a Mon Sep 17 00:00:00 2001 From: suchmememanyskill <38142618+suchmememanyskill@users.noreply.github.com> Date: Wed, 1 Apr 2020 18:39:56 +0200 Subject: [PATCH] fix --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1cb284b..7dfc7f2 100644 --- a/README.md +++ b/README.md @@ -37,10 +37,10 @@ Function | Args | Description | Output ## Variables -TegraScript has 3 kinds of variables, @ints, $strings, and ?marks -You can define @ints by writing `@variable = setInt(0);` (or any function for that matter) -You can define $strings with the use of `setString();`, `setStringIndex();` and `combineStrings();` -You can define ?marks by using them as a command, so just `?variable;` will work +TegraScript has 3 kinds of variables, @ints, $strings, and ?marks. +- You can define @ints by writing `@variable = setInt(0);` (or any function for that matter). +- You can define $strings with the use of `setString();`, `setStringIndex();` and `combineStrings();`. +- You can define ?marks by using them as a command, so just `?variable;` will work. You can use these variables in place of int, string or jmp inputs respectively, so for example `@b = setInt(@a)` or `setString($a, $b)`