more work on the server
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-01-16 23:46:30 +00:00
parent 1d2db555be
commit 47c040e75f
3 changed files with 144 additions and 29 deletions

View File

@@ -1,5 +1,11 @@
defmodule Test do
defmacro test() do
quote do
a = 1
end
end
defmacro createfuncBase(name, do: do_exp, else: else_exp) do
b1 = quote do
false -> unquote(else_exp)
@@ -25,6 +31,12 @@ end
defmodule Test2 do
require Test
def test2() do
a = 2
test
IO.puts("#{a}")
end
Test.createfuncBase :lol do
true -> :test
else :test1 end