local https = require("ssl.https") -- The link you provided local url = "https://websim.ai/@sysybaubau/code-challenge/2" -- Fetch content from the URL local response, status = https.request(url) -- Check if the request was successful if status == 200 then print("Successfully fetched the content:") print(response) else print("Failed to fetch the content. Status code:", status) end