mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-12 07:35:00 +00:00
feat: Add Pony language test case and fixture
This commit is contained in:
parent
b54d800024
commit
a503f291e7
2 changed files with 9 additions and 0 deletions
8
tests/fixtures/languages/pony/test.pony
vendored
Normal file
8
tests/fixtures/languages/pony/test.pony
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
class Greeter
|
||||
fun greet(name: String): String =>
|
||||
"Hello, " + name + "!"
|
||||
|
||||
actor Main
|
||||
new create(env: Env) =>
|
||||
let greeter = Greeter
|
||||
env.out.print(greeter.greet("Pony"))
|
Loading…
Add table
Add a link
Reference in a new issue