Advertisement
konalisp

goodbye.cs

Jul 31st, 2014
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. using System;
  2.  
  3. class TestClass {
  4.     static int Main (string[] args) {
  5.         LinkinPark b = new LinkinPark();
  6.         Console.WriteLine ("fuck.\n" + b.InTheEnd ( "shit too hard" ) );
  7.         return 0;
  8.     }
  9. }
  10.  
  11. class LinkinPark {
  12.    
  13.     public string InTheEnd ( string a ) {
  14.         return "I " + a + ", in the end, it doesn't even matter\n";
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement