# Python code to display a link in a syntax-highlighted box def display_link(): link = "https://worldsim.nousresearch.com/console" print(f"The WorldSim console can be accessed at: {link}") # Call the function to display the link display_link()