Sunday, March 11, 2012

cr 9, if ..

i need to use if statements in my formula like:
if a > b then
stringvar c := "abc";

if a > b then
numbervar i := 34;
In CR 9 :
how do i combine these two if statements into one
without getting error?.Have you tried:

if a > b then
stringvar c := "abc";
numbervar i := 34;

No comments:

Post a Comment