refactor: add initial language test fixtures for C, C++, Elixir and Java

This commit is contained in:
Paul Gauthier (aider) 2024-11-27 06:59:58 -08:00
parent 9e9b5e8d46
commit a85ae206c9
4 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,5 @@
defmodule Greeter do
def hello(name) do
IO.puts("Hello, #{name}!")
end
end