]> icculus.org git repositories - duncan/yast2-ruby-bindings.git/blob - modules/MyModule.ycp
Merge git://git.icculus.org/duncan/yast2-ruby-bindings
[duncan/yast2-ruby-bindings.git] / modules / MyModule.ycp
1 {
2    module "MyModule";
3
4    global void nothing()
5    {
6     y2milestone("doing nothing, returning nothing");
7    }
8
9    global integer half( integer value )
10    {
11       return value / 2;
12    } 
13 }
14