簡単言語

NO_681

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
}