From f8ef79dcb155087269f700662a78ae1a72f2ec74 Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Thu, 16 May 2019 12:03:08 +0200 Subject: [PATCH] Update page 'Future AerScript Versions' --- Future-AerScript-Versions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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