b=button(): ? format$("button()カンスウ=%10d", b) 'または ? format$("button()カンスウ=%10d", button()) です。%10d の部分を10桁の十進数で置き換えます。(dはデシマル(十進数)の意味) ? format$("button()カンスウ=%32b", b) これは32桁の二進数で表示します。button() の戻り値を見るならこれが一番直観的。 bはバイナリ(二進数)の意味。 %はいくつあってもいいので、 ? format$("maincnt=%10d, button()カンスウ=%32d", maincnt, button()) のようにも書けます。