2016-01-23 10:06:57 +09:00
|
|
|
package com.iluwatar.value.object;
|
|
|
|
|
|
|
|
/**
|
2016-01-28 22:39:50 +09:00
|
|
|
* Hello world!.
|
2016-01-23 10:06:57 +09:00
|
|
|
*
|
|
|
|
*/
|
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());
|
|
|
|
}
|
2016-01-23 10:06:57 +09:00
|
|
|
}
|