usebevy::prelude::*;usebevy_app::DefaultTaskPoolOptions;/// This example illustrates how to customize the thread pool used internally (e.g. to only use a
/// certain number of threads).
fnmain(){App::build().add_resource(DefaultTaskPoolOptions::with_num_threads(4)).add_default_plugins().run();}