function slp(t ,cmd)
{
cmd="sleep " t
system(cmd)
}
BEGIN{
print "test text1"
slp(3)
print "test text2"
}
戻る