aboutsummaryrefslogtreecommitdiff
path: root/src/Hello.c
blob: 7cd1d70a12a4dd1488f0f4835e1073cad73f4684 (plain)
1
2
3
4
5
6
#include "Hello.h"
#include <stdio.h>

void printMessage(const char* message) {
    printf("%s", message);
}