// Test for multiple *.c file in a project.
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
// Function prototyping
#include "test.h"
void app_main() {
printf("Hello, Wokwi!\n");
Test();
vTaskDelay(1000 / portTICK_PERIOD_MS);
}