``` var vas = async(context) { ...
# coroutines
y
Copy code
var vas = async(context) {
                    createDb(mcontext)
                }

                var bool = vas.await()
                logd("Bool", "$bool")
                if (bool) {
                    run {
                        launch(context + UI) {
                            logd("Database On UI", "$context")
                            isInit?.offer(false)
                            isDatabaseCreated.value = true
                        }
                    }
                }
Hi guys.Can you please help me ?? The code below
var bool = await()
is not executing.