I have written a Hello world program in assembly.I compile the code using nasm
nasm -f elf64 -o Hello.o Hello.asm
The NASM compiling is successful and a object file is created. But when I link it using ld linker
ld -o Hello Hello.o
and then run it with \. Hello
this error occurs-
bash: .:Hello: cannot execute binary file