
gen Action do
    sys.touch "action.t"
end

desc "Print hello."
task :hello do |t|
    puts t.name
end

task :private do |t|
    puts t.name
end

task :sys_shun_demo do |t|
    puts(sys["**/*.s.t"].shun("a.t"))
end

# vim: ft=ruby
