From 1c85e5bf4b0764a52a6b8576df00014d1dbcb369 Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Thu, 16 May 2019 11:58:01 +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 7d82405..f8fa832 100644 --- a/Future-AerScript-Versions.md +++ b/Future-AerScript-Versions.md @@ -13,7 +13,7 @@ A right associative \** operator can be added to support exponentiation, along w printf("2 ** 3 ** 2 = %d\n", 2 ** 3 ** 2); // 512 ### Operator overloading -It should be possible to redeclare or overload most of the built-in operators available in AerScript. Overloaded operators are functions with special names the keyword operator followed by the symbol for the operator being defined. similar to any other function, an overloaded operator has a return type and a parameter list. +It should be possible to redeclare or overload most of the built-in operators available in AerScript. Thus a programmer can use operators with user-defined object types as well. Overloaded operators are functions with special names the keyword operator followed by the symbol for the operator being defined. similar to any other function, an overloaded operator has a return type and a parameter list. class Box { public float $breadth;