Skip to content

Instantly share code, notes, and snippets.

@RandyMcMillan
Forked from rust-play/playground.rs
Last active July 5, 2025 14:26
Show Gist options
  • Save RandyMcMillan/ba0e9151666967aa70d048c365faac43 to your computer and use it in GitHub Desktop.
Save RandyMcMillan/ba0e9151666967aa70d048c365faac43 to your computer and use it in GitHub Desktop.
tokio_get_string.rs
#[tokio::main]
async fn main() {
tokio::spawn(async {
print!("{}", get_string().await);
});
}
async fn get_string() -> String {
String::from("string")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment