Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. program Test {
  2.   const test := 123;
  3.   void Main() {
  4.     String testString;
  5.     testString := "abcXY123";
  6.     String testStringTwo;
  7.     testStringTwo := "def451";
  8.     String testStringThree;
  9.     testStringThree := "ghi789";
  10.     write testString;
  11.     write testStringTwo;
  12.     write testStringThree;
  13.   }
  14. }
  15.  
  16. //result ["ghi783", "ghi781", "ghi789"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement