Fix validator.w3.org warnings

This commit is contained in:
Lassi Kortela 2023-02-22 17:30:32 +02:00
parent 005ada8fd1
commit 969bdc02d6
1 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,7 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The 'dream' Scheme Interpreter</title>
<link rel="stylesheet" href="dream.css">
</head>
@ -9,15 +10,15 @@
by David Joseph Stith
<hr>
<b>Welcome to the home of my Scheme interpreter/compiler, 'dream', written in x86 machine language. :-)</b>
<br />
<br>
All essential syntax and procedures from the <a href="https://people.csail.mit.edu/jaffer/r4rs_toc.html">R4RS standard</a> are implemented.
<br />
<br>
The interpreter is properly tail recursive and passes all applicable tests from the 'r4rstest.scm' test suite.
<br />
<br>
Rational arithmetic with 32 bit magnitude numerator and denominator, or up to 262112 bit magnitude if the GMP library is available, is supported (with sign stored separately), but no Real or Complex numbers (these currently are in the works).
<hr>
Dream is compiled using an x86 assembler written in Scheme, with a syntax very similar to GAS.
<br />
<br>
Consequently Dream compiles itself. :-)
<hr>
<b>Download latest version for Linux or Windows on x86:</b>