Regions
Simple example that shows the new region feature.
def user {r: Region} = {
var x in r = 1;
x = x + 1
}
def ex() = region myRegion {
user {myRegion}
}
ex()
Simple example that shows the new region feature.
def user {r: Region} = {
var x in r = 1;
x = x + 1
}
def ex() = region myRegion {
user {myRegion}
}
ex()