Advertisement
basictomonokai

電子書籍用サンプルプログラム ◆ファイル読込のあるプログラム(ファイルから文字列を読込)

Jun 3rd, 2015
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. REM Start of BASIC! Program
  2. Text.open r, file_num2, "samp.txt"
  3. do
  4. text.readln file_num2,msg$
  5. if msg$="EOF" then
  6. else
  7. popup msg$,0,0,1
  8. pause 4000
  9. print msg$
  10. endif
  11. until msg$="EOF"
  12. text.close file_num2
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement