浏览 183
分享
Use Raw String Literals to Avoid Escaping
Go supports raw string literals,which can span multiple lines and include quotes. Use these to avoidhand-escaped strings which are much harder to read.
Bad | Good |
---|---|
|
|
评论列表