| 2 | #include <sol/sol.hpp> |
| 3 | |
| 4 | std::string my_function(int D_count, std::string original) { |
| 5 | // Create a string with the letter 'D' "D_count" times, |
| 6 | // append it to 'original' |
| 7 | return original + std::string(D_count, 'D'); |
| 8 | } |
| 9 | |
| 10 | int main() { |
| 11 |
nothing calls this directly
no outgoing calls
no test coverage detected