aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/ruby_alias_module_function.i
blob: 900de5f1dd6ace92c686a259e86b80bca157a77c (plain)
1
2
3
4
5
6
7
8
9
10
11
%module ruby_alias_module_function

%alias get_my_name "nickname,fullname";

%inline %{

const char *get_my_name(){
  return "Chester Tester";
}

%}