Execute tasks asynchronously in Zsh without external dependencies
Perform tasks asynchronously without external tools
async$ source $(brew --prefix)/opt/zsh-async/async.zsh$ async_init && async_start_worker myworker && async_job myworker 'sleep 2 && echo done' && async_register_callback myworker callback_function$ async_stop_worker myworker && async_unregister_callback myworker