mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-17 10:05:01 +00:00
feat: Add Gleam language support to TestRepoMapAllLanguages
This commit is contained in:
parent
86a5e8dbe1
commit
d74068464d
2 changed files with 11 additions and 0 deletions
10
tests/fixtures/languages/gleam/test.gleam
vendored
Normal file
10
tests/fixtures/languages/gleam/test.gleam
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
import gleam/io
|
||||
|
||||
pub fn greet(name: String) -> String {
|
||||
"Hello, " <> name <> "!"
|
||||
}
|
||||
|
||||
pub fn main() {
|
||||
greet("World")
|
||||
|> io.println
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue