This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Weather dashboard script using the Open-Meteo API | |
| // Fetches weather data for multiple cities and displays a formatted table | |
| cities := [ | |
| {"name": "New York", "lat": 40.71, "lon": -74.01}, | |
| {"name": "London", "lat": 51.51, "lon": -0.13}, | |
| {"name": "Tokyo", "lat": 35.69, "lon": 139.69}, | |
| {"name": "Sydney", "lat": -33.87, "lon": 151.21}, | |
| {"name": "Paris", "lat": 48.85, "lon": 2.35} | |
| ] | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package main | |
| import ( | |
| "fmt" | |
| "github.com/risor-io/risor/object" | |
| "github.com/risor-io/risor/op" | |
| ) | |
| const CrawlerType object.Type = "crawler.crawler" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import boto3 | |
| s3 = boto3.client("s3") | |
| s3.put_object( | |
| Bucket="example-bucket", | |
| Key="texts/placeholder.txt", | |
| Body="Lorem Ipsum", | |
| ) |