12 lines
356 B
Python
12 lines
356 B
Python
a = "this is some code"
|
|
b = 5 #fmt:skip
|
|
c = 9 #fmt: skip
|
|
d = "thisisasuperlongstringthisisasuperlongstringthisisasuperlongstringthisisasuperlongstring" #fmt:skip
|
|
|
|
# output
|
|
|
|
a = "this is some code"
|
|
b = 5 # fmt:skip
|
|
c = 9 # fmt: skip
|
|
d = "thisisasuperlongstringthisisasuperlongstringthisisasuperlongstringthisisasuperlongstring" # fmt:skip
|