Newer
Older
GeneratedDesignPatternsByDTRAM / models / structual / Proxy.model
Okina on 20 Jul 2022 220 bytes upload strategy
channel CIO{
    out wizardTowerProxy(wtp:Int, enter(wizard:Str)) == wtp
}

channel C1{
    in wizardTowerProxy(wtp2:Int, enter(wizard)) == wizard
    out ivoryTower(it:Int, enter(wizard)) == if(eq(it,3), it + 1, it)
}