I want to get started with CLIPS, trying to realize a very simple task:
Item1 = 5
Item2 = 7
Item3 = 8
Item1 = 10
Lets say I have the variables or assignments above. Now I want a script to order the Items that have the min value to the max value. Additionally, Items with the same name (Item 1) should have their values summed up.
Already realized this in other languages, but I m totally lost in CLIPS.
NewList= {Item2=7,Item3=8,Item1=15}