LARGER2.sml
# larger2.sml
numeric a, b, c, d, x;
func larger ( numeric x, numeric y ) {
local numeric d = 100;
if (x > y) return x;
else return y;
}
clear();
a = 6; b = 7; d = 2;
c = larger(a,b);
printf("c= %d, d= %d, x= %d",c,d,x);
©MicroImages, Inc. 2013 Published in the United States of America
11th Floor - Sharp Tower, 206 South 13th Street, Lincoln NE 68508-2010 USA
Business & Sales: (402)477-9554 Support: (402)477-9562 Fax: (402)477-9559
Business info@microimages.com
Support support@microimages.com
Web webmaster@microimages.com
|