We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4458549 commit 9ce1101Copy full SHA for 9ce1101
_overviews/scala3-book/scala-for-python-devs.md
@@ -136,13 +136,19 @@ These examples demonstrate how to create variables in Python and Scala.
136
<tr>
137
<td class="python-block">
138
<code>x = 1
139
- <br>x = "Hi"</code>
+ <br>x = "Hi"
140
+ <br>x = """foo
141
+ <br> bar
142
+ <br> baz"""</code>
143
</td>
144
</tr>
145
146
<td class="scala-block">
147
<code>val x = 1
- <br>val x = "Hi"</code>
148
+ <br>val x = "Hi"
149
+ <br>val x = """foo
150
+ <br> bar
151
+ <br> baz"""</code>
152
153
154
</tbody>
0 commit comments