#author("2018-02-22T16:04:56+09:00","","")
[[簡単言語]]
**NO_681 [#afef1b5d]
indexを辿りたい場所からにすればいいのかw~
indexとpcの管理は似てる変数だからややこしくありますがw~
~
 pc=1
 index=1
 if pc==index{
   mes "A"
   pc++
 }
 index++
 if pc==index{
   mes "B"
   pc++
 }
 index++
 if pc==index{
   goto *cont
 }
 index++
 if pc==index{
   mes C
 }
 *cont
 index=2
 pc=3
 if pc==index{
   mes "A"
   pc++
 }
 index++
 if pc==index{
   mes "B"
   pc++
 }
 index++
 if pc==index{
   mes "C"
   pc++
 }
 index++
 if pc==index{
   stop
 }
 index++
 if pc==index{
   mes C
 }