print command for rust unit-test

#include <stdio.h>

void test_function() {
    // Test logic goes here
}

int main() {
    test_function();
    printf("Test passed.\n");
    return 0;
}