blob: a46a6b101f28d686ce009ee3b6990ab1acd7b11b [file] [log] [blame]
/**
* Copyright (c) 2013, Werner Keil and others.
* 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
*
* Contributors:
* Werner Keil - initial implementation
*/
package org.eclipse.uomo.examples.units.console.sandbox;
import org.eclipse.uomo.units.IMeasure;
import org.eclipse.uomo.units.SI;
import org.eclipse.uomo.units.impl.quantity.AngleAmount;
import org.unitsofmeasurement.quantity.Angle;
/**
* @author Werner
*
*/
public class SandboxPlayground {
/**
* @param args
*/
public static void main(String[] args) {
Angle a = new AngleAmount(12,SI.RADIAN);
System.out.println(a);
IMeasure<Angle> m = new AngleAmount(12,SI.RADIAN);
System.out.println(m);
}
}