Getting Started with Functional Programming
steemit.com1 pointsby nv-vn0 comments
a : la b : lb a := b
--------------------------
a : lb
So for example if `b : lb`: a := b :>>
doSomething()
need not have a type `>= lb`. b : lb d : ld
-------------------------------
a := b :>> c := d : max lb ld
Otherwise, it seems like you could leak info by just assigning two variables, where one is always public. E.g. x = user.firstName;
y = random()
would be "safe."