Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. dim voices[] = ""
  2. recostate(true)
  3. voice = dictate()
  4. repeat
  5. resize(voices, length(voices))
  6. voices[length(voices) -1] = voice
  7. voice = dictate()
  8. until voice = "終わり"
  9. dim f = fopen("voice.txt", f_write)
  10. fput(f, trim(join(voices,"<#cr>")))
  11. fclose(f)
  12. print "the end."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement