Sha256: d9f12063ee224ca33d2a2c6f13dc35a10c67ee95bce39971cda9941ff3f0e193
Contents?: true
Size: 523 Bytes
Versions: 2
Compression:
Stored size: 523 Bytes
Contents
//Written using Nila. Visit http://adhithyan15.github.io/nila (function() { var parse_name, parsed_name, test_method; // This method demonstrates multiple return values parse_name = function(input_name) { var _ref1, first_name, last_name; _ref1 = input_name.split(" "); first_name = _ref1[0]; last_name = _ref1[1]; return [first_name, last_name]; }; test_method = function() { return console.log("Hello World!"); }; parsed_name = parse_name("Adhithya Rajasekaran"); }).call(this);
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nilac-0.0.4.3.9.7.1 | shark/test_files/correct_multiple_return.js |
nilac-0.0.4.3.9.7 | shark/test_files/correct_multiple_return.js |