{} is a sugar for array of tuples, so @ already works with it by just making a 
sequence.
    
    
    echo @{"key_1": "value_1", "key_2": "value_2"}
    
    
    Run

results in 
    
    
    @[("key_1", "value_1"), ("key_2", "value_2")]
    
    
    Run

Reply via email to