nilac 0.0.4.1.9 → 0.0.4.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/lib/nilac/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Nilac
2
- VERSION = "0.0.4.1.9"
2
+ VERSION = "0.0.4.2.0"
3
3
  end
@@ -1,6 +1,6 @@
1
1
  //Written using Nila. Visit http://adhithyan15.github.io/nila
2
2
  (function() {
3
- var first_name, last_name, multipleinit1;
3
+ var _ref1, first_name, last_name;
4
4
 
5
5
  // This file demonstrates multiple variable initialization
6
6
 
@@ -10,11 +10,11 @@
10
10
  return [name_split[0],name_split[1]];
11
11
  }
12
12
 
13
- multipleinit1 = parse_name("Adhithya Rajasekaran");
13
+ _ref1 = parse_name("Adhithya Rajasekaran");
14
14
 
15
- first_name = multipleinit1[0];
15
+ first_name = _ref1[0];
16
16
 
17
- last_name = multipleinit1[1];
17
+ last_name = _ref1[1];
18
18
 
19
19
  console.log(first_name + " " + last_name);
20
20
 
@@ -5,10 +5,10 @@
5
5
  // This method demonstrates multiple return values
6
6
 
7
7
  function parse_name(input_name) {
8
- var multipleinit1, first_name, last_name;
9
- multipleinit1 = input_name.split(" ");
10
- first_name = multipleinit1[0];
11
- last_name = multipleinit1[1];
8
+ var _ref1, first_name, last_name;
9
+ _ref1 = input_name.split(" ");
10
+ first_name = _ref1[0];
11
+ last_name = _ref1[1];
12
12
  return [first_name,last_name];
13
13
  }
14
14