@andnull@social.nouveau.community
Post #1521449
2026-03-19 12:16 UTC
@lesley An amusing one not include is GDScript having tabbed syntax, but also including ; it's grammar. It's weird and I have only abused for needless oneliners.
if x: f(); g(); h() # this us all under the if statement iirc
Replies (1)
-
@andnull@social.nouveau.community 2026-03-19 12:26
@lesley A final interesting entry is Dialog's approach. It's a logic language and rules follow the structure: (begining of definition) (predicates) (within) (the rule) Any line with leading whitespace is assumed to be part of a rule's body. No further nesting of indentation. It can only really get away with this structure cause it's a logic language.