mirror of
https://github.com/helix-editor/helix
synced 2026-08-03 14:04:12 +02:00
This will be used by the cargo indent-check xtask to validate queries, similar to the existing indent tests in helix-core.
9 lines
137 B
Fortran
9 lines
137 B
Fortran
program main
|
|
integer :: i
|
|
do i = 1, 10
|
|
if (i > 5) then
|
|
print *, i
|
|
end if
|
|
end do
|
|
end program main
|