Mirgrate avif files to lfs

This commit is contained in:
Rasmus Rasmussen 2025-02-01 11:01:19 +01:00
parent dd8fe10d86
commit d40f8af617
17 changed files with 3 additions and 2 deletions

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
*.avif filter=lfs diff=lfs merge=lfs -text

View File

@ -8,7 +8,7 @@
<hr> <hr>
<p></p> <p></p>
<div> <div class="font-mono ">
<pre><code class="text-sm"> <pre><code class="text-sm">
program hello program hello
implicit none implicit none
@ -18,7 +18,7 @@ end program hello
</div> </div>
<p>In the good ol' days (before FORTRAN 77), when printing to console, you would write <span><code>write(*,*)</code></span>, <p>In the good ol' days (before FORTRAN 77), when printing to console, you would write <span><code>write(*,*)</code></span>,
but with the release of FORTRAN 77, that became redundant, as you could use the newest keyword, <span><code>print</code></span>.</p> but with the release of FORTRAN 77, that became redundant, as you could use the newest keyword: <span><code>print</code></span>.</p>
<br> <br>
<p>With modern compilers, running the newest Fortran standards, <span><code>write(*,*) 'Hello world!'</code> and <code>print *, 'Hello world!'</code></span> <p>With modern compilers, running the newest Fortran standards, <span><code>write(*,*) 'Hello world!'</code> and <code>print *, 'Hello world!'</code></span>