// Import modules using relative paths import "utils/common" as common; import "components/calendar/controller/calendar" as calendar; // Main function that demonstrates the relative imports fn main() { // Print a message using the common utils let greeting = common::get_greeting("User"); print(greeting); // Get calendar events using the calendar controller let events = calendar::get_all_events(); // Print the events using the common utils format function print("\nCalendar Events:"); for event in events { let formatted = common::format_event(event); print(formatted); } // Return a success message "All imports worked correctly!" }