comments, flow control
This commit is contained in:
8
comments/Cargo.toml
Normal file
8
comments/Cargo.toml
Normal file
@ -0,0 +1,8 @@
|
||||
[package]
|
||||
name = "comments"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
8
comments/src/main.rs
Normal file
8
comments/src/main.rs
Normal file
@ -0,0 +1,8 @@
|
||||
fn main() {
|
||||
// this is a comment
|
||||
/* is this a comment?
|
||||
*
|
||||
* looks like it
|
||||
*/
|
||||
println!("Hello, world!");
|
||||
}
|
Reference in New Issue
Block a user