Lines Matching refs:greeting
79 fn r(greeting: &str);
83 include!("example/include/greeting.h");
84 fn c(greeting: &str);
88 fn r(greeting: &str) {
89 println!("{}", greeting);
98 // include/greeting.h
104 void c(rust::Str greeting);
108 // src/greeting.cc
110 #include "example/include/greeting.h"
113 void c(rust::Str greeting) {
114 std::cout << greeting << std::endl;