Fix validator.w3.org warnings
This commit is contained in:
parent
005ada8fd1
commit
969bdc02d6
|
@ -1,6 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
<title>The 'dream' Scheme Interpreter</title>
|
<title>The 'dream' Scheme Interpreter</title>
|
||||||
<link rel="stylesheet" href="dream.css">
|
<link rel="stylesheet" href="dream.css">
|
||||||
</head>
|
</head>
|
||||||
|
@ -9,15 +10,15 @@
|
||||||
by David Joseph Stith
|
by David Joseph Stith
|
||||||
<hr>
|
<hr>
|
||||||
<b>Welcome to the home of my Scheme interpreter/compiler, 'dream', written in x86 machine language. :-)</b>
|
<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.
|
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.
|
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).
|
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>
|
<hr>
|
||||||
Dream is compiled using an x86 assembler written in Scheme, with a syntax very similar to GAS.
|
Dream is compiled using an x86 assembler written in Scheme, with a syntax very similar to GAS.
|
||||||
<br />
|
<br>
|
||||||
Consequently Dream compiles itself. :-)
|
Consequently Dream compiles itself. :-)
|
||||||
<hr>
|
<hr>
|
||||||
<b>Download latest version for Linux or Windows on x86:</b>
|
<b>Download latest version for Linux or Windows on x86:</b>
|
||||||
|
|
Loading…
Reference in New Issue