Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Examples of Expressions



> set x=<2 + 4>
> set y=<$(x) x 10>
> echo "x x y = " <$(x) x $(y)>
x x y = 360


> set x=4
> set y=2
> set z=<($(x) + $(y)) x 10>
> echo "z = $(z)"
z = 60


> set x=10 z=20
> set q=<$(x) LT $(z)>
> echo "q = $(q)"
q = 1
  • No labels