From bb4199bfc7daa2b03644bb17c826e1a700fdc47a Mon Sep 17 00:00:00 2001 From: Rudi Hansen Date: Tue, 21 Aug 2018 11:03:29 +0200 Subject: [PATCH] Changed Variable types to capital letters --- dynamicsax2012-msdn/declaration-of-variables.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dynamicsax2012-msdn/declaration-of-variables.md b/dynamicsax2012-msdn/declaration-of-variables.md index e145488b..6fb54f13 100644 --- a/dynamicsax2012-msdn/declaration-of-variables.md +++ b/dynamicsax2012-msdn/declaration-of-variables.md @@ -25,7 +25,7 @@ At times you might want a variable to have a value other than the default as soo // Assigns value of pi to 12 significant digits -real pi = 3.14159265359; +Real pi = 3.14159265359; Another syntax is needed to initialize objects because they are initialized by invoking the new method on the class: @@ -39,11 +39,11 @@ X++ allows you to declare more than one variable in the same declaration stateme // Declares 2 integers, i and j -int i,j; +Int i,j; // Declares array with 100 integers with 5 in memory and b as integer with value 1 -int a\[100,5\], b=1; +Int a\[100,5\], b=1; ## Summary