]> icculus.org git repositories - duncan/yast2-ruby-bindings.git/blob - examples/ruby/ruby_from_ycp.ycp
- Lot of fixes and support for the UI!!!
[duncan/yast2-ruby-bindings.git] / examples / ruby / ruby_from_ycp.ycp
1
2 {
3     import "Duncan";
4     string result = (string) multiply_by_eight(10);
5     UI::OpenDialog(
6          `VBox(
7          `Label(result),
8          `PushButton("OK")
9          )
10          );
11     UI::UserInput();
12     UI::CloseDialog();
13 }