Skip to content

Commit

Permalink
Prepare to publish crate
Browse files Browse the repository at this point in the history
  • Loading branch information
bednie committed Aug 27, 2024
1 parent a709865 commit 8bdc33d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/basic_usage.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
use stringvec::stringvec;
use std::f64::consts::PI;

fn main() {
let mixed_types = stringvec!["hello", 42, 'A', 3.5];
let mixed_types = stringvec!["hello", 42, 'A', PI];
println!("Mixed types vector: {:?}", mixed_types);

let names = stringvec!["Alice", "Bob", "Charlie"];
Expand Down

0 comments on commit 8bdc33d

Please sign in to comment.