2010-07-24から1日間の記事一覧

makefile を自動生成するスクリプト書いてみた

makefile.in 必須w #!c:/bin/ruby/bin/ruby # -*- encoding: shift_jis # mkconf.rb require 'optparse' opt = OptionParser.new opt.version = "0.0.1" OPTS = {} DEFAULT_PREFIX = "./bin" DEFAULT_INCLUDEDIR = "./include" DEFAULT_SRCDIR = "./src" DE…

Smalltalk っぽく書いてみた。

元ネタはこっち[squeak.qp.land.to]。 # test-readstream.st | in s | in <- "0123456789 absdefg". s <- ReadStream on: in from: 0 to: in size. s next. # => '0'