Sha256: 603d11736c3c723562b9186552eed80cad118e4ce64c2595959936afa1fc8e5a

Contents?: true

Size: 399 Bytes

Versions: 9

Compression:

Stored size: 399 Bytes

Contents

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

  //This file tests the limits of the string interpolation feature present in Nila

  msg = "Hello " + "world. A lovely place." + "" + "Another " + "Lovely quote";

  console.log(msg);

  console.log("Hello " + "world");

  console.log('Hello #{world}');

  console.log('Hello');

}).call(this);

Version data entries

9 entries across 8 versions & 1 rubygems

Version Path
nilac-0.0.4.2.6 shark/test_files/correct_string_interpolation.js
nilac-0.0.4.2.5 shark/test_files/correct_string_interpolation.js
nilac-0.0.4.2.4 shark/test_files/correct_string_interpolation.js
nilac-0.0.4.2.3 shark/test_files/correct_string_interpolation.js
nilac-0.0.4.2.2 shark/test_files/correct_string_interpolation.js
nilac-0.0.4.2.1 shark/test_files/correct_string_interpolation.js
nilac-0.0.4.2.0 shark/test_files/correct_string_interpolation.js
nilac-0.0.4.1.9 shark/test_files/correct_string_interpolation.js
nilac-0.0.4.1.9 shark/test_files/string_interpolation.js