Getting Started with Functional Programming
steemit.com1 ポイント投稿者 nv-vn0 コメント
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."