13 lines
221 B
Java
Raw Normal View History

package com.iluwatar.value.object;
/**
2016-01-28 22:39:50 +09:00
* Hello world!.
*
*/
2016-01-28 22:39:50 +09:00
public class App {
public static void main(String[] args) {
HeroStat stat = HeroStat.valueOf(10, 5, 0);
System.out.println(stat.toString());
}
}