--- /dev/null
+Split←{
+ blocknums ← +`𝕨
+ # Set entries in blocknums to -1 when they correspond with delimiters.
+ blocknums ↩ (¯1¨)⌾(𝕨⊸/) blocknums
+ blocknums⊔𝕩
+}
+
+Prep←{
+ ParseVal¨(""⊸≢¨𝕩)/𝕩
+}
+
+ParseList←{𝕊in:
+ in↩1↓¯1↓in
+ depth←+`('['=in)-(']'=in)
+ ParseVal¨ ((','=in)∧(depth=0)) Split in
+}
+
+ParseVal←{'['=⊑𝕩}◶⟨•ParseFloat,ParseList⟩
+
+Main←{
+ ×´(⟨⟨⟨2⟩⟩,⟨⟨6⟩⟩⟩∊˜∧𝕩∾⟨⟨⟨2⟩⟩,⟨⟨6⟩⟩⟩)/1+↕2+≠𝕩
+}
+
+•Show Main Prep •file.Lines ⊑•args