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.
136136 <tr>
137137 <td class="python-block">
138138 <code>x = 1
139- <br>x = "Hi"</code>
139+ <br>x = "Hi"
140+ <br>y = """foo
141+ <br> bar
142+ <br> baz"""</code>
140143 </td>
141144 </tr>
142145 <tr>
143146 <td class="scala-block">
144147 <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>
146152 </td>
147153 </tr>
148154 </tbody >
@@ -180,7 +186,7 @@ These examples demonstrate how to create variables in Python and Scala.
180186 </tr>
181187 <tr>
182188 <td class="scala-block">
183- <code>val movies = Map(
189+ <code>val x = Map(
184190 <br> "Toy Story" -> 8.3,
185191 <br> "Forrest Gump" -> 8.8,
186192 <br> "Cloud Atlas" -> 7.4
You can’t perform that action at this time.
0 commit comments