1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Cleanup ahead of release

This commit is contained in:
Emil Ernerfeldt
2023-05-23 19:44:49 +02:00
parent cb6bcde22c
commit cccdfd246e
7 changed files with 17 additions and 17 deletions

View File

@@ -26,7 +26,7 @@ fn main() -> Result<(), eframe::Error> {
if ui.button("Click each year").clicked() {
age += 1;
}
ui.label(format!("Hello '{}', age {}", name, age));
ui.label(format!("Hello '{name}', age {age}"));
});
})
}