Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class TestClass {
- static int Main (string[] args) {
- LinkinPark b = new LinkinPark();
- Console.WriteLine ("fuck.\n" + b.InTheEnd ( "shit too hard" ) );
- return 0;
- }
- }
- class LinkinPark {
- public string InTheEnd ( string a ) {
- return "I " + a + ", in the end, it doesn't even matter\n";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement