This commit is contained in:
Xi Yan 2024-10-29 17:10:19 -07:00
parent 257f858d89
commit eafa89c52d

View file

@ -112,11 +112,12 @@ inference> Considering your interest in Switzerland, here are some neighboring c
```{tab} Python ```{tab} Python
```python ```python
def hello(): def hello():
print("Hello!") print("Hello, World!")
``` ```
```{tab} Javascript ```{tab} JavaScript
```javascript ```javascript
function hello() { function hello() {
console.log("Hello!"); console.log("Hello, World!");
} }
``` ```
```