作成:2007/01/29
1 2 3 4 5 6 7 8 910
function test(a){ Return a; } x = "あ"; y = "い"; z = "う"; a = x + test(y) + test(z); Mes(a);