macro say_hello(name) :(println("Hello, $(name)!")) end
# Using the macro generates a function @greet("Alice") However, the correct way to use the above macro would actually be to define and then invoke like so:
macro say_hello(name) :(println("Hello, $(name)!")) end
macro say_hello(name) :(println("Hello, $(name)!")) end
# Using the macro generates a function @greet("Alice") However, the correct way to use the above macro would actually be to define and then invoke like so:
macro say_hello(name) :(println("Hello, $(name)!")) end