Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion RES-Timekeeper/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,28 @@ static void Main()
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);

// add a lot of comments so that the function length is longer than code climat likes
// actually this doesn't work, maybe it needs to be code, as opposed to comments
int a = 0;
a += 1;
a += 1;
a += 1;
a += 1;
a += 1;
a += 1;
a += 1;
a += 1;
a += 1;
a += 1;
a += 1;
a += 1;
a += 1;
a += 1;
a += 1;

// it looks like this line could be deleted, but it is required for some reason.
// If you don't have, the icon doesn't appear in the system tray
new MainForm();
new MainForm();
Application.Run();
}
}
Expand Down