2009-08-24から1日間の記事一覧

prawn:Prawn::Document::BoundingBox#left

#!/usr/bin/env ruby require "prawn" pdf = Prawn::Document.new p pdf.bounds.left で、 0

Manual:Operators:Operators That Apply Functions To Results:>>

>>> from lepl import * >>> def star_show(x): ... print("*", x, "*") ... return x ... >>> (Literal('a') > star_show).parse('abc') * ['a'] * [['a']] >>> (Literal('a') >= star_show).parse('abc') * ['a'] * ['a'] >>> (Literal('a') >> star_show)…