diff --git a/Future-AerScript-Versions.md b/Future-AerScript-Versions.md index fed1cb0..71da6cd 100644 --- a/Future-AerScript-Versions.md +++ b/Future-AerScript-Versions.md @@ -12,7 +12,7 @@ A right associative \** operator can be added to support exponentiation, along w printf("2 ** 3 = %d\n", 2 ** 3); // 8 printf("2 ** 3 ** 2 = %d\n", 2 ** 3 ** 2); // 512 -### +### AUTO keyword Variables that are declared at method/closure scope could have an implicit type ___auto___. An implicitly typed local variable should be strongly typed just as if programmer had declared the type himself, but the compiler determines the type. auto $var = 'text'; // Implicitly typed string