show message if test_c and test_cpp ran successfully

This commit is contained in:
Alfi Maulana 2023-01-11 16:51:13 +07:00
parent 6f70267077
commit 99cd2fcb10
No known key found for this signature in database
GPG Key ID: 2242A64C2A8DF5A4
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,6 @@
#include <stdio.h>
int main() { int main() {
printf("all ok\n");
return 0; return 0;
} }

View File

@ -1,3 +1,6 @@
#include <iostream>
int main() { int main() {
std::cout << "all ok" << std::endl;
return 0; return 0;
} }