@GeOdys, welcome to the forum!
Yes:
The LFortran compiler does not print it, unless you ask for it:
$ cat a.f90
program help
print *, "Hello World!"
end program
$ lfortran a.f90
Hello World!
$ lfortran --print-leading-space a.f90
Hello World!
@GeOdys, welcome to the forum!
Yes:
The LFortran compiler does not print it, unless you ask for it:
$ cat a.f90
program help
print *, "Hello World!"
end program
$ lfortran a.f90
Hello World!
$ lfortran --print-leading-space a.f90
Hello World!