Adding code snippets in VS Code

Suragch
4 min readJan 18, 2023

A short tutorial to make writing code a little faster

Photo by Matt Artz

I’m in the habit of scattering print statements around my code. This saves from having to step through a debugger to see what the code is doing. In the Dart language, it looks like this:

print('message');

Everything but the message inside the quotes is just boilerplate code that I have to type over and…

--

--