comments, flow control

This commit is contained in:
2022-12-16 10:00:30 -05:00
parent 6db7d9edf7
commit 9a7a9558b5
5 changed files with 101 additions and 0 deletions

8
comments/src/main.rs Normal file
View File

@@ -0,0 +1,8 @@
fn main() {
// this is a comment
/* is this a comment?
*
* looks like it
*/
println!("Hello, world!");
}