Archive for February, 2007

Peach 0.8

February 22nd, 2007 | Category: Peach

This version of Peach has a few new features, lots of bug fixes, and also marks the start of all language bindings being included in the main distribution.  This includes C, Java, .NET, and XPCOM.

New Features

  • Experimental XPCOM bindings
  • Block3
  • Testing server with MySQL backend
  • BlockSize now works with any Generator
  • Windows Popup Killer
1 comment

Peach GroupSequence Shortcut

February 16th, 2007 | Category: Peach

Newer versions of Peach have a nice GroupSequence shortcut that make life a bit easier.

group = GroupSequence([Group(), Group(), Group()])
generator = Block([
	BadString(group[0]),
	Static(’: ‘),
	BadString(group[1]),
	Static(’('),
	BadNumbersAsString(group[2])
	])
No comments