Skip to content

Instantly share code, notes, and snippets.

@jasikpark
Created April 3, 2019 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasikpark/36ec02269cb4653def9100982ba7d4af to your computer and use it in GitHub Desktop.
Save jasikpark/36ec02269cb4653def9100982ba7d4af to your computer and use it in GitHub Desktop.
struct User {
name: &'static str,
email: &'static str,
}
let caleb_jasik = User {
name: "Caleb Jasik",
email: concat!("calebjasik", "at", "jasik.xyz"),
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment