Triggering Side Effects in Effect with "Fire and Forget"

Hey is it possible in effect to trigger side effects?
Im thinking about "fire and forget" stuff.

in a promise based function i would've done something like:
async function doSomething() {
  void foo(); // async function or Promise - this should be done in parallel without any further error handling etc.
  await bar(); // another async function that I want to await.
}
Was this page helpful?