mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
31 lines
516 B
Markdown
31 lines
516 B
Markdown
# Hello aider!
|
|
|
|
Here is the simplest possible "hello world" example of using aider:
|
|
|
|
<br/>
|
|
<br/>
|
|
<br/>
|
|
<div class="chat-transcript" markdown="1">
|
|
|
|
#### change hello to goodbye
|
|
|
|
To change the output from "hello" to "goodbye", we need to modify the `hello.py` file.
|
|
|
|
Here is the change:
|
|
|
|
```python
|
|
hello.py
|
|
<<<<<<< ORIGINAL
|
|
print("hello")
|
|
=======
|
|
print("goodbye")
|
|
>>>>>>> UPDATED
|
|
```
|
|
|
|
> Applied edit to hello.py
|
|
> Commit 672ae42 aider: Changed output from "hello" to "goodbye" in hello.py.
|
|
|
|
</div>
|
|
<br/>
|
|
<br/>
|
|
<br/>
|