ifの代わりにonを使う

ifの代わりにonを使うのサンプル

ifの代わりにonを使うのサンプル

  • タグ:
  • タグはありません
*main
    wait 10
    a = 0
    goto *test1
    goto *test2
    stop
*test1
    on a goto *main
    goto *main
*test2
    if 0 == a : goto *main
    goto *main