2008-03-16 01:23:14 -04:00
|
|
|
def do_junk(*args):
|
|
|
|
#@@:string:sql
|
|
|
|
s = "select * from foo where bar = 99;"
|
|
|
|
s = "select * from foo where bar = 99;"
|
|
|
|
|
|
|
|
#@@:string:xml
|
|
|
|
s = "<foo blah='3'>bar</foo>"
|
|
|
|
s = "<foo blah='3'>bar</foo>"
|
|
|
|
|
|
|
|
#@@:string:python
|
2008-03-16 02:16:41 -04:00
|
|
|
#@@:string.string:sql
|
|
|
|
s = "lambda x, y: 'select * from foo where x = %d and y = %d;' % x + y"
|
2008-03-16 01:23:14 -04:00
|
|
|
s = "lambda x, y: 'result: %d' % x + y"
|