diff --git a/README.md b/README.md index 0e8438d4..cbd9ff51 100644 --- a/README.md +++ b/README.md @@ -197,57 +197,86 @@ Then a `pkg` directory will be created, containing everything you need for a web ```html - - - Scryer Prolog - Sudoku Solver Example - - - + + // Output results + document.write(`

Sudoku solver returns:

`); + for (const solution of formattedSolutions) { + document.write(`
${solution}
`); + } + + + + + + ```