define(function () { 'use strict';
var a = 0;
var b = 1;
var x = a;
var y = b;
console.log( x + y );
});