Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am ebadiere on github.
  • I am ebadiere (https://keybase.io/ebadiere) on keybase.
  • I have a public key ASBy6L4VlxyhxJDtY63FSiRyUj-aICYgaE-7jpm2gxt4ywo

To claim this, I am signing this object:

@ebadiere
ebadiere / keybase.md
Created February 19, 2020 18:04
Keybase

Keybase proof

I hereby claim:

To claim this, I am signing this object:

This post links my 3Box profile to my Github account! Web3 social profiles by 3Box.
✅ did:3:bafyreieiu3y3sfqgshfpwzzjxexvk5vssqblgqduwd3dvar2ptrpppz4sq ✅
Create your profile today to start building social connection and trust online at https://3Box.io/
This post links my 3Box profile to my Github account! Web3 social profiles by 3Box.
✅ did:3:bafyreieiu3y3sfqgshfpwzzjxexvk5vssqblgqduwd3dvar2ptrpppz4sq ✅
Create your profile today to start building social connection and trust online at https://3Box.io/
#![allow(unused_variables)]
fn main() {
let mut s = String::from("hello");
s.push_str(", world!"); // push_str() appends a literal to a String
println!("{}", s); // This will print `hello, world!`
}