Sha256: 5d90e39b580bdea8a3ff623f2887de69f0031a134e07a853649849e53d741e9e

Contents?: true

Size: 494 Bytes

Versions: 4

Compression:

Stored size: 494 Bytes

Contents

//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";

}).call(this);

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
nilac-0.0.4.1.8 shark/test_files/correct_string_operators.js
nilac-0.0.4.1.7 shark/test_files/correct_string_operators.js
nilac-0.0.4.1.6 shark/test_files/correct_string_operators.js
nilac-0.0.4.1.5 shark/test_files/correct_string_operators.js