Skip to content

Instantly share code, notes, and snippets.

@kyubuns
Last active April 5, 2019 08:53
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 kyubuns/dca93cdb04c24c8a5dcce8c682545307 to your computer and use it in GitHub Desktop.
Save kyubuns/dca93cdb04c24c8a5dcce8c682545307 to your computer and use it in GitHub Desktop.
struct User {
id int
}
fn show_user_id(user *User) {
println(user.id)
}
fn main() {
user := User{id: 10}
show_user_id(&user)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment