/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package jmazzodicarte; /** * * @author gabriele */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here //Seme s = Seme.COPPE; // System.out.println(s.toString()+ " "+s.ordinal()); //System.out.println(new Carta(3, Seme.BASTONI)); MazzoCarte mazzo= new MazzoCarte(); System.out.println(mazzo); mazzo.mischia(); System.out.println(mazzo); mazzo.ordina(); System.out.println(mazzo); } }