We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33cc32a commit 77fe737Copy full SHA for 77fe737
examples/demo.rs
@@ -4,7 +4,6 @@ use std::time::Duration;
4
// Connect to demo docker environment.
5
// cargo run --example demo
6
7
-
8
#[tokio::main]
9
async fn main() {
10
// let _ = tracing_subscriber::fmt()
@@ -41,5 +40,8 @@ async fn main() {
41
40
42
let user2 = FPUser::new("user_id").with("city", "New York");
43
let discount2 = fp.number_value("promotion_activity", &user2, 9.0);
44
- println!("Result => discount for user in New York is : {:?}", discount2);
+ println!(
+ "Result => discount for user in New York is : {:?}",
45
+ discount2
46
+ );
47
}
0 commit comments