thqby / ahk2_lib

MIT License
215 stars 29 forks source link

YAML.ahk #6

Closed krasnovpro closed 1 year ago

krasnovpro commented 1 year ago

YAML.parse('{"text":"\u041f\u0440\u0438\u0432\u0435\u0442"}') Returns: text: 1fривет

But should be: text:Привет

thqby commented 1 year ago

Fixed by 0bd74dd

krasnovpro commented 1 year ago
q := yaml.parse("
(
  product:
      - sku         : BL394D
        quantity    : 4
        description : Basketball
        price       : 450.00
      - sku         : BL4438H
        quantity    : 1
        description : Super Hoop
        price       : 2392.00
)")

Error: This value of type "Map" has no method named "Push".

thqby commented 1 year ago
q := YAML.parse("
(
  product:
    - sku         : BL394D
      quantity    : 4
      description : Basketball
      price       : 450.00
    - sku         : BL4438H
      quantity    : 1
      description : Super Hoop
      price       : 2392.00
)")