// A program from Chapter 10 of Sams Teach Yourself Java in 24 Hours // by Rogers Cadenhead, http://www.java24hours.com/ package com.java24hours; class Commodore64Tester { public static void main(String[] arguments) { Commodore64Modem vic = new Commodore64Modem(); System.out.println("Trying the acoustic modem:"); vic.speed = 300; vic.displaySpeed(); vic.connect(); } }