From 87549afc50dea3f91a142a1f97d673ffcb960d4b Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Tue, 19 May 2020 19:07:36 +0200 Subject: updated some comments --- ecomp-c/tests/variable_initialization.e | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ecomp-c/tests/variable_initialization.e b/ecomp-c/tests/variable_initialization.e index 775829b..8e1b12e 100644 --- a/ecomp-c/tests/variable_initialization.e +++ b/ecomp-c/tests/variable_initialization.e @@ -8,9 +8,9 @@ const N : integer = 1; // this is a constant, exists only during compilation var - a : integer; // not initialized + a : integer; // not initialized, defacto initialized in data segment to zero b : integer := N; // initialized on declaration, initialized in data segment - c : integer; + c : integer; // initialized at runtime to 2, in data segment initialized as zero begin c := 2; // initialized at runtime, in data segment initialized as zero -- cgit v1.2.3-54-g00ecf