// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * Closures are admitted * * @path ch13/13.2/S13.2.1_A5_T1.js * @description Sorting with closure */ var __arr = [4,3,2,1,4,3,2,1,4,3,2,1]; //Sort uses closure // __arr.sort( function(x,y) { if (x>y){return -1;} if (x