Skip to content

Commit 1431bfc

Browse files
committed
Line edits
1 parent e71dd4a commit 1431bfc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

blog_professional/_posts/2021-03-30-include-python.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ There's some [finagling in the standards committee](http://www.open-std.org/jtc1
2929

3030
Turns out that Python also has raw string literal syntax.
3131
Conveniently, these strings also start out with `R"`.
32+
:thinking:
3233

3334
Also, Python is perfectly happy to ignore any loose strings you may have floating around.
3435
For example,
@@ -39,12 +40,13 @@ print( "boop boop it's python time" )
3940
```
4041

4142
Indeed, Python will happily ignore any loose strings, say, you might happen to position the beginning and end of a script.
43+
:monocle_face:
4244

4345
See where this is going?
4446

4547
## The Abomination
4648

47-
We're going to shove the C++ raw string literal syntax *into* our python script and then `#include` that.
49+
Where it is going is that we're going to shove the C++ raw string literal syntax *into* our python script and then `#include` that.
4850

4951
`example.py`:
5052
```python

0 commit comments

Comments
 (0)