|
|
|
|
|
by geraldbauer
2617 days ago
|
|
For the "do not require" the type annotations / signatures so they can be lazy I would use / recommend a language pragma and not a block. Learn more about language pragmas (works kind like a pre-processor) :-) - https://github.com/s6ruby/pragmas I think you already have made-up your own "magic comments" / language pragma e.g. # type: true and so on. > I'm not sure we'd make constants with unicode like
> BigMap‹Address→Account› for generics, though, how do
> you even type that? :) I see you managed to type it! What's your secret? :-). By the way, you can use the alternate ASCII-style e.g. BigMap.of(Address=>Account). |
|