Flowcharts improvements; Other additions, bug fixes and performance improvements.
lots of surprises! Great update!
StringSub is an absolute game-changing update! No more using & to concatenate strings!
Before:
"Bye string" & var1 & "string" & var2 & "something" & var3 & "string"
After:
StringSub("string {0} and {1} and {2} string", var1, var2, var3)
:
StringSub("Hello, {0}! Welcome to {1}", Variable1, Variable2)
Ohh I was wondering what exactly it does. This is indeed huge <3