/* * Simple Java Application #1 * Show some Java basics * NOT a FIRST robot program */ //From Matt //FROM MKTDEV package samplejavaapp1; // change made by Rob on I believe the RobDev branch // change #2 made by Rob on RobDev Branch /** * * @author Rob */ public class SampleJavaApp1 { /** * @param args the command line arguments */ public static void main(String[] args) { // A simple console output program // If running this inside nebeans or other IDE, // make sure you have your output window open System.out.println("Matt's Contribution: DOGECOIN"); System.out.println("Hello TEAM 1778 software!"); } }