You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
usingstaticNake.Session;// will exit Nake with success code (0)Exit();// will exit Nake with success code (0)// and will print "Bye" message upon exit Exit("Bye");// will exit Nake with failure code (-1)Fail();// will exit Nake with failure code (-1)// and will print "Err" message upon exit Fail("Err");