Skip to content
Snippets Groups Projects

Korjausyritykset

Merged Laura Laurell requested to merge korjausyritykset into main
2 files
+ 1
1
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -18,7 +18,7 @@ class SiteGen {
@@ -18,7 +18,7 @@ class SiteGen {
"<h1>" + siteTitle + "</h1>" +
"<h1>" + siteTitle + "</h1>" +
"<ul>" + movieList.stream().map(i -> "<li>"+ i + "</li>").collect(Collectors.joining()) + "</ul>" +
"<ul>" + movieList.stream().map(i -> "<li>"+ i + "</li>").collect(Collectors.joining()) + "</ul>" +
"</body>" +
"</body>" +
"<html>";
"</html>";
public static void main(String args[]) throws Exception {
public static void main(String args[]) throws Exception {
Files.createDirectory(Paths.get("public/"));
Files.createDirectory(Paths.get("public/"));
Loading