Skip to content

Instantly share code, notes, and snippets.

View 0X1A's full-sized avatar
🦀
Ahora me toca a mi

Alberto 0X1A

🦀
Ahora me toca a mi
View GitHub Profile
struct MyStruct {}
trait SayHi {
fn hi(name: String) -> bool;
}
impl SayHi for MyStruct {
fn hi(name: String) -> bool {
print "Hi from " + name + "!";
return true;