テキストファイルから1行ずつ読み出す

notesel oneTextFile;oneNoteという変数をテキストファイルの出力先として指定(ここで初めて作った変数)

noteload "sample.txt"

sdim oneLine, 100;テキストを1行読み出す文字列配列を用意する

repeat noteinfo(0)

noteget oneLine, cnt;1行読み出す

mes oneLine

await 1000

loop