用途別リファレンス文字をテキストオブジェクトとして表示する

スコアを表示する

Main
$score=0;
new Label{x:200,y:200,template:"Score: $score"};
while(true){
  if(getkey("z")==1) $score+=10;
  update();
}