14

$me->Age++;

// Have an awesome day ! 😉

Comments
  • 1
    let age = get_age();
    let f = | | print!("Happy {}. birthday", &age);
    f();
  • 1
    Happy birthday man
  • 0
    @wholl0p
    Am I missing something here?
    let f = | | print!("Happy {}. birthday", &age);
    isn't valid javascript es6 syntax right?
  • 2
    @incognito that's Rust, not JS
  • 1
    @wholl0p oh, my bad!
    I saw let and thought it was JS xD
  • 1
    @incognito "let" for variables is pretty common, at least Rust, Swift and Lustre use it ^^
Add Comment