But await works only inside an async proc

were as asyncCheck can be used like this:
    
    
    
    when isMainModule :
       asyncCheck mastercon()
       runForever()
    
    
    Run

How can we do:
    
    
    when isMainModule :
      await mastercon()
      runForever()
    
    
    Run

Reply via email to