Remove unnecessary blank lines from Javascript examples

This commit is contained in:
William S Fulton 2014-04-19 17:59:49 +01:00
commit aae63efcfe
5 changed files with 44 additions and 44 deletions

View file

@ -3,7 +3,7 @@ var example = require("./example");
// ----- Object creation -----
console.log("Creating some objects:\n");
console.log("Creating some objects:");
a = new example.Vector(3,4,5);
b = new example.Vector(10,11,12);
@ -15,7 +15,7 @@ console.log(" created" + b.print());
// This calls the wrapper we placed around operator+(const Vector &a, const Vector &)
// It returns a new allocated object.
console.log("Adding a+b\n");
console.log("Adding a+b");
c = example.addv(a, b);
console.log("a+b = " + c.print());
@ -26,9 +26,9 @@ console.log("a+b = " + c.print());
// ----- Create a vector array -----
// Note: Using the high-level interface here
console.log("Creating an array of vectors\n");
console.log("Creating an array of vectors");
va = new example.VectorArray(10);
console.log("va = " + va + "\n");
console.log("va = " + va);
// ----- Set some values in the array -----
@ -46,20 +46,20 @@ va.set(2,example.addv(a,b));
// Get some values from the array
console.log("Getting some array values\n");
console.log("Getting some array values");
for (i = 0; i < 5; i++) {
temp = va.get(i);
console.log(i,temp.print());
}
// Watch under resource meter to check on this
console.log("Making sure we don't leak memory.\n");
console.log("Making sure we don't leak memory.");
for (i = 0; i < 1000000; i++) {
c = va.get(i % 10);
}
//---------TODO---------
//----- Clean up -----
//console.log("Cleaning up\n");
//console.log("Cleaning up");
//example.delete_VectorArray(va);
//example.delete_Vector(a);