#include "ballsort.h"
#include <iostream>

using namespace CS128;
using namespace std;

int main() {
	const int size = 10; 
    Ball list[size];

 	/* Initialize the array */ 
 
 	/* List the integers to the to the screen using radius() */ 
 
 	/* Sort the array, calling display() after each pass through 
 	the array */ 
 	
 	/* List the (now sorted) integers to the to the screen using 
 	radius() */
 
    return 0;
}
