snipplets.dev/code/Crystal/json.cr

6 lines
90 B
Crystal

require "json"
# Парсинг строки
value = JSON.parse("[1, 2, 3]")
p! value[0]