Skip to content

Instantly share code, notes, and snippets.

View ttsmit's full-sized avatar

Tijmen Smit ttsmit

View GitHub Profile
@ttsmit
ttsmit / jsonToDict.tcl
Created September 1, 2025 12:01
Handling JSON in TCL
proc jsonToDict {jsonString} {
# Remove whitespace
set jsonString [string trim $jsonString]
# Initialize an empty dictionary
set dict {}
# Check for empty string
if {$jsonString eq ""} {
return $dict