Has the where
keyword in Daml anything to do with the where
keyword in Haskell?
Sort of. You can use where
in function definitions just like in Haskell, so in that sense, yes. The where
keyword that is part of the template syntax has no direct equivalent in Haskell, as Haskell has no template syntax.
1 Like
Thank you