Guest User

Untitled

a guest
Jul 19th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. liftIO . return = return
  2. liftIO (m >>= f) = liftIO m >>= (liftIO . f)
  3.  
  4. MULTIPLY hourly_rate BY hours_worked GIVING weekly_pay
  5.  
  6. Dim num As Integer
  7. Do
  8. Console.WriteLine("Please enter positive a number")
  9. num = Integer.Parse(Console.ReadLine())
  10. While num = 0
Add Comment
Please, Sign In to add comment