export function ask(question: string, callback?: any): string | undefined {
    if (!callback) return iq.ask(question)
    else callback(iq.ask(question))
}