Added index.md

Added index.md with explanation which seems a little bit short of detail.
Fixed the directory of the files.
This commit is contained in:
JuhoKang
2016-01-28 23:33:46 +09:00
parent cca40a543a
commit 083065ba93
8 changed files with 55 additions and 2 deletions

View File

@ -0,0 +1,12 @@
package com.iluwatar.value.object;
/**
* Hello world!.
*
*/
public class App {
public static void main(String[] args) {
HeroStat stat = HeroStat.valueOf(10, 5, 0);
System.out.println(stat.toString());
}
}