using System;
using System.Collections.Generic;
using Scriban;
public class Program
{
public static void Main()
var template =
"""
{{ for key in keys }}
{{ dict[key] }}
{{ end }}
---
{{ dict["one"] }}
{{ dict["two"] }}
{{ dict["three"] }}
""";
var result = Template.Parse(template).Render(new
Dict = new Dictionary<string, string>()
["one"] = "111",
["two"] = "222",
["three"] = "333"
},
Keys = new string[] { "one", "two", "three" }
});
Console.WriteLine(result);
}