diff options
Diffstat (limited to 'trunk/src/examples/greeting.py')
-rw-r--r-- | trunk/src/examples/greeting.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/trunk/src/examples/greeting.py b/trunk/src/examples/greeting.py deleted file mode 100644 index 2e6b241..0000000 --- a/trunk/src/examples/greeting.py +++ /dev/null @@ -1,17 +0,0 @@ -# greeting.py
-#
-# Demonstration of the pyparsing module, on the prototypical "Hello, World!"
-# example
-#
-# Copyright 2003, by Paul McGuire
-#
-from pyparsing import Word, alphas
-
-# define grammar
-greet = Word( alphas ) + "," + Word( alphas ) + "!"
-
-# input string
-hello = "Hello, World!"
-
-# parse input string
-print(hello, "->", greet.parseString( hello ))
|