Fix validator.w3.org warnings
This commit is contained in:
parent
005ada8fd1
commit
969bdc02d6
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue