From 26b77d7593b5ee0792b6b556f5569ea4227c2b02 Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Thu, 16 May 2019 12:18:48 +0530 Subject: convert to unix format --- .../scilabcode/mainfunction.sci | 34 +++++++++++----------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'tests/unit_tests/test018_NestedWhile/scilabcode/mainfunction.sci') diff --git a/tests/unit_tests/test018_NestedWhile/scilabcode/mainfunction.sci b/tests/unit_tests/test018_NestedWhile/scilabcode/mainfunction.sci index 8142e6ff..8b9c07d3 100644 --- a/tests/unit_tests/test018_NestedWhile/scilabcode/mainfunction.sci +++ b/tests/unit_tests/test018_NestedWhile/scilabcode/mainfunction.sci @@ -1,19 +1,19 @@ -//SCI2C: DEFAULT_PRECISION= DOUBLE +//SCI2C: DEFAULT_PRECISION= DOUBLE -function mainfunction() +function mainfunction() + +a = 0; +b = 5; +while (a+b < 36) + disp('a'); + disp(a); + a = a + b; + while (b < 9) + disp('b'); + disp(b); + b = b + 1; + a = a + 1; + end +end +endfunction -a = 0; -b = 5; -while (a+b < 36) - disp('a'); - disp(a); - a = a + b; - while (b < 9) - disp('b'); - disp(b); - b = b + 1; - a = a + 1; - end -end -endfunction - -- cgit