We also should ask people to use the main proc even when they do when 
isMainModule, because that doesn't introduce any new scopes, so we should 
advise to do something like 
    
    
    proc main =
      echo "hi"
    
    when isMainModule:
      main()
    
    
    Run

Reply via email to