File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -136,13 +136,19 @@ These examples demonstrate how to create variables in Python and Scala.
136
136
<tr>
137
137
<td class="python-block">
138
138
<code>x = 1
139
- <br>x = "Hi"</code>
139
+ <br>x = "Hi"
140
+ <br>y = """foo
141
+ <br> bar
142
+ <br> baz"""</code>
140
143
</td>
141
144
</tr>
142
145
<tr>
143
146
<td class="scala-block">
144
147
<code>val x = 1
145
- <br>val x = "Hi"</code>
148
+ <br>val x = "Hi"
149
+ <br>val y = """foo
150
+ <br> bar
151
+ <br> baz"""</code>
146
152
</td>
147
153
</tr>
148
154
</tbody >
@@ -180,7 +186,7 @@ These examples demonstrate how to create variables in Python and Scala.
180
186
</tr>
181
187
<tr>
182
188
<td class="scala-block">
183
- <code>val movies = Map(
189
+ <code>val x = Map(
184
190
<br> "Toy Story" -> 8.3,
185
191
<br> "Forrest Gump" -> 8.8,
186
192
<br> "Cloud Atlas" -> 7.4
You can’t perform that action at this time.
0 commit comments