Sha256: 599c9160922111b944eb185e9c9456a89e70ce2f7573e8cafdd255ad79decc4f

Contents?: true

Size: 405 Bytes

Versions: 4

Compression:

Stored size: 405 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

4 entries across 4 versions & 1 rubygems

Version Path
nilac-0.0.4.3.3 shark/test_files/correct_string_interpolation.js
nilac-0.0.4.3.0 shark/test_files/correct_string_interpolation.js
nilac-0.0.4.2.9 shark/test_files/correct_string_interpolation.js
nilac-0.0.4.2.8 shark/test_files/correct_string_interpolation.js