/******************************************************************************* * Copyright (c) 2007 Simula Labs * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html *******************************************************************************/ package org.eclipse.buckminster.sample; /** * Sample hello world class */ public class App { public static void main( String[] args ) { System.out.println( "Hello World!" ); } }