CoLI icon indicating copy to clipboard operation
CoLI copied to clipboard

Add native indent support for `stringfy`

Open softmarshmallow opened this issue 3 years ago • 0 comments

Native indenting support when building coli object as a source string.

Ideas

stringfy_internal(o, depth=1){
     stringfy_internal(o.1, depth + 1)
     eachline(o, "\t")
}

softmarshmallow avatar Sep 11 '21 06:09 softmarshmallow