Dhall has single-line and block comments (with a syntax borrowed from Haskell):-- single-line comment True -- Line comments may follow code on the same line {- block comment -} {- block comments can be {- nested -}-} let x {- block comments can appear inside of expressions like whitespace -} = 1 in x
How does dhall lint differ from dhall format? How do I update nested fields in a record? Why do empty lists require a type annotation? Does Dhall support user-defined recursive types? How to translate recursive code to Dhall. Why is recursion not supported directly? How to implement recursive types: a general recipe; Where did the recursion go?