牌語備忘録 -pygo

あくまでもメモです。なるべくオフィシャルの情報を参照してください。

牌語備忘録 -pygo

Perl

Perl5.10 をMacports で MacOSX10.5 に インストールしようとしたらエラーでた(´・ω・`)

なんだかPerlと自分は昔から相性悪い気がする... MacBook-2:~ username$sudo port -d install perl5.10 Password: DEBUG: Found port in file:///opt/local/var/macports/sources/rsync.macports.org/release/ports/lang/perl5.10 DEBUG: Changing to port d…

初めてのPerl 5.5.1「配列とprintf」をPythonで

Perl my @items = qw( wilma dino pebbles ); printf "The items are:\n" . ("%10s\n" x @items), @items; Python items = ["wilma", "dino", "pebbles"] print "The items are:\n" + "%10s\n" * len(items) % tuple(items) 実行結果 The items are: wilma d…