This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 class ItemInfo {
2         int quantity;
3         int price;
4         ItemInfo(int x, int y) { 
5                 quantity = x;
6                 price = y;
7         }
8 }