stream output to "std_out"; box bottles in (n::int 64) out (n'::int 64,v::string) match 0 -> (99,("No more bottles of beer on the wall, ", "no more bottles of beer.\n", "Go to the store and buy some more, ", "99 bottles of beer on the wall.\n") as string) | n -> (n-1,(n," bottles of beer on the wall, ", n," bottles of beer.\n", "Take one down and pass it around, ", n-1,"bottles of beer on the wall.\n") as string); wire bottles (bottles.n' initially 99) (bottles.n,output);