//宣言部 private property string greeding head = "hello, ". public method say greeding (string name = "world") { output stream std out = system consore standerd out. this greeding head + arg name + "." outln to std out. } //使用する側のコードを一部抜粋 this say greeding ">>1".