14 Oct
2022
14 Oct
'22
midnight
i havent learned rust yet for becoming-obvious reasons struct HelloWorld { hello: String, world: String } impl HelloWorld { fn print(&self) { println!(“{} {}”, self.hello, self.world); } } fn main() { let helloworld = HelloWorld { hello: “hello”, world: “world” }; helloworld.print(); }