summaryrefslogtreecommitdiff
path: root/Examples/test-suite/ruby_alias_global_function.i
blob: bddb24959c8927e9cd8c40d9b28e17ef96702b73 (plain)
1
2
3
4
5
6
7
8
9
10
11
%module ruby_alias_global_function

%alias get_my_name "nickname,fullname";

%inline %{

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

%}