Cuba
```
struct Greeting {
name: String,
}
impl Greeting {
fn new(name: &str) -> Self {
Greeting {
name: name.to_string(),
}
}
}
fn main() {
let greeting = Greeting::new("world!");
println!("Hello, {}", greeting.name);
}
```
```
struct Greeting {
name: String,
}
fn main() {
let greeting = Greeting{ name: "world!".to_string()};
println!("Hello, {}", greeting.name);
}
```
```
fn main() {
let name = "world!";
println!("Hello, {}", name);
}
```
```
fn main() {
println!("Hello, world!");
}
```
#GrapheneOS Android #Pixel flushing
#GrapheneOS only works on #Pixel Android phones.
Hello World in #Rust makes me feel like I'm back in kindergarten :(
#nostr is working though like #BITCOIN being put through the test of fire. All on #Damus can just switch client and still retain their accounts? It's a win right??


