# Test dynamic attribute names
let
  key = "mykey";
  value = 42;
in {
  # Dynamic attribute with string interpolation
  "${key}" = value;

  # Another dynamic attribute
  "${key}_suffix" = value + 1;

  # Static attribute for comparison
  static = 100;
}
