diff options
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/hello-world.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hello-world.rs b/examples/hello-world.rs index 9928016..835de22 100644 --- a/examples/hello-world.rs +++ b/examples/hello-world.rs @@ -1,5 +1,5 @@  use shit_wx_sys as wx;  fn main() { -    wx::message_box(); +    wx::message_box("sample text");  }  |