
	;
	;	str命令による、10進数->16進数変換サンプル
	;
	a=0
	b=""
	pos 0,0:input a
	pos 0,30:input b
	pos 70,2:mes "10進数"
	pos 70,32:mes "16進数"
	pos 0,60
	button "変換",*in10
	button "終了",*owari
	stop
*in10
	n=a:str n,16
	objprm 1,n
	stop
*owari
	end


