I've been learning Stratego recently. And I got stuck about how to use a bound variable. I came up with an example as follows:
The current term is "Plus(Int(i),Int(j))", (i=3,j=5). I defined rule
R : Plus(Int(i),Int(j)) -> Int(k) where k := <add>(i,j)
Apply R, and it works fine. I have Int(8).
Then I tried to define another rule:
S : Plus(Int(i),Int(j)) -> Int(k) where k := y
I am sure y is bound to 8 (checked with :binding y). I reset the current term, and apply S. I got "command failed".
Can't we use a bound variable in Stratego just like using an initialized variable in the other programming languages?
BTW, is there any difference between k := <add>(i,j) and <add>(i,j) => k by any means?