//Written using Nila. Visit http://adhithyan15.github.io/nila
(function () {
  var str;

  // This file demonstrates different ways to declare a string

  str = 'this is a wonderful string';

  str = 'this is a wonderful string';

  str = 'this is a wonderful string'  + 'this is another wonderful string';

  str = "this is a wonderful string";

  str = "this is a wonderful string";

  str = "this is a wonderful string"  + "this is another wonderful string";

  str = "this is a wonderful string";

  str = "this is a wonderful string";

  str = "this is a wonderful string"  + "this is another wonderful string";

}).call(this);