Added Rust to C++ example

This commit is contained in:
Petr Kozelka
2018-09-11 02:29:57 +02:00
parent a2ddf21e48
commit 4798ecc622
4 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
extern "C"
int triple_input(int input) {
return input * 3;
}