There's a bit in the documentation on this, but Julia metaprogramming apparently just doesn't fit in my brain. How do I achieve this:
func = condition ? :func1 : :func2 ccall((func, "libsomething"), ...) I tried all combinations of macro, quote and @eval I could make sense of, with no success. This seems like a simple enough operation... Thanks.
