initial commit
This commit is contained in:
4
exercises/05_ticket_v2/10_packages/Cargo.toml
Normal file
4
exercises/05_ticket_v2/10_packages/Cargo.toml
Normal file
@@ -0,0 +1,4 @@
|
||||
[package]
|
||||
name = "packages"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
11
exercises/05_ticket_v2/10_packages/src/main.rs
Normal file
11
exercises/05_ticket_v2/10_packages/src/main.rs
Normal file
@@ -0,0 +1,11 @@
|
||||
// This is a `main.rs` file, therefore `cargo` interprets this as the root of a binary target.
|
||||
|
||||
// TODO: fix this broken import. Create a new library target in the `src` directory.
|
||||
// The library target should expose a public function named `hello_world` that takes no arguments
|
||||
// and returns nothing.
|
||||
use packages::hello_world;
|
||||
|
||||
// This is the entrypoint of the binary.
|
||||
fn main() {
|
||||
hello_world();
|
||||
}
|
||||
Reference in New Issue
Block a user