A helper function to write the given code in between two '"'s
Notes: T can be any type that can be passed to CodeBuilder.put.
The CodeBuilder to use.
The code to write.
builder
auto builder = new CodeBuilder(); builder.put("Hello"); builder.putString("World!"); builder.data.should.equal("Hello\n\"World!\"");
See Implementation
A helper function to write the given code in between two '"'s
Notes: T can be any type that can be passed to CodeBuilder.put.