Sha256: cd789450f109588f40e46958edc351a2aeda697cbe7ec174d3f8092337218f6d

Contents?: true

Size: 471 Bytes

Versions: 4

Compression:

Stored size: 471 Bytes

Contents

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

  // This file demonstrates unless && until statements.

  // Examples are from http://www.skorks.com/2009/09/a-wealth-of-ruby-loops-and-iterators/ && 

  // http://37signals.com/svn/posts/2699-making-sense-with-rubys-unless 

  if (!(person.present)) {
    console.log("There's no such person");
  }

  i = 0;

  while (!(i > 10)) {
    i += 1;
  }

}).call(this);

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
nilac-0.0.4.1.3 shark/test_files/correct_unless_until.js
nilac-0.0.4.1.2 shark/test_files/correct_unless_until.js
nilac-0.0.4.1.1 shark/test_files/correct_unless_until.js
nilac-0.0.4.1 shark/test_files/correct_unless_until.js