Variables and Assignments
we “undefine” by putting the variable in single quotes
x := 'x'; y := 'y';
x;
y;
y can be made a "function" of x if x has no value when y is defined
y:= ln(x);
y;
x := 1;
y;
x := 10;
y;
Previous slide
Next slide
Back to first slide
View graphic version