listmatchingAfficherPeano.tex 283 B

1234567891011
  1. \begin{tomcode3}[label=code:listmatchingAfficherPeano,caption=Filtrage associatif.]
  2. public void afficher(NatList liste) {
  3. int i = 0;
  4. %match(liste) {
  5. concNat(X1*,x,X2*) -> {
  6. i = `X1.length();
  7. System.out.println("liste("+i+") = " + `x);
  8. }
  9. }
  10. }
  11. \end{tomcode3}