Generate code to "send" a question

This commit is contained in:
2024-06-20 12:52:42 +02:00
parent cc4d14fe69
commit aa7d51f088
2 changed files with 71 additions and 20 deletions

View File

@@ -29,8 +29,8 @@ impl TestProtocolServer for DummyServer {
question.len() as i32
}
fn addition(&mut self, arg0: i32, arg1: i32) -> i32 {
todo!()
fn addition(&mut self, a: i32, b: i32) -> i32 {
a + b
}
}