// main2.cpp, second file of a number in mp3pieces project // By RPF 5/24/2000 // First try at Node use and that's all #include "mp3Header.h" void main() { cout << "main2.cpp -- create a node with two args.\n\n"; Node* node1 = new Node(1792504, "planet_zorg"); cout << "key is " << node1->key << " info is " << node1->info << "\n"; // to end run and close console window. cout << "\nDon't forget to enter an int when done.\n"; int i; cin >> i; }