readme fix

This commit is contained in:
2026-05-18 15:56:17 +00:00
parent d9c5042ec7
commit 606501d654

View File

@@ -6,10 +6,10 @@ ForeignThon transpiles `.es.py`, `.ta.py` (and more) into standard Python. Keywo
```python ```python
# hola.es.py # hola.es.py
definir saludar(nombre): def saludar(nombre):
retornar f"Hola, {nombre}!" retornar f"Hola, {nombre}!"
para i en rango(3): para i en dist(3):
imprimir(saludar(f"mundo {i}")) imprimir(saludar(f"mundo {i}"))
``` ```