mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
11 lines
No EOL
199 B
JavaScript
11 lines
No EOL
199 B
JavaScript
(function(){
|
|
var change_numbers, new_num, num;
|
|
num = 1;
|
|
change_numbers = function() {
|
|
var new_num;
|
|
num = 2;
|
|
new_num = 3;
|
|
return new_num;
|
|
};
|
|
new_num = change_numbers();
|
|
})(); |