mingw: handle GITPERLLIB in t0021 in a Windows-compatible way
[git.git] / t / t4018 / custom3-alternation-in-pattern
blob5f3769c64fc3434d79077646459fe9b61c6ea50b
1 public class Beer
3         int special;
4         public static void main(String RIGHT[])
5         {
6                 String s=" ";
7                 for(int x = 99; x > 0; x--)
8                 {
9                         System.out.print(x + " bottles of beer on the wall "
10                                 + x + " bottles of beer\n" // ChangeMe
11                                 + "Take one down, pass it around, " + (x - 1)
12                                 + " bottles of beer on the wall.\n");
13                 }
14                 System.out.print("Go to the store, buy some more,\n"
15                         + "99 bottles of beer on the wall.\n");
16         }