Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApplication1
- {
- internal class Program
- {
- private static void Main(string[] args)
- {
- int meh = -2000000000;
- checked // This here enables checking for under/over flows
- {
- while (true)
- {
- meh -= 10000;
- Console.WriteLine(meh);
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment