import times
import os

proc sprint(message: string)=
  for character in message:
    sleep(1000)
    stdout.write character
  stdout.write "\n"

sprint "hello"