跳转至

plos-clan mkdocs 模板

#include <stdio.h>

int main() {
  printf("Hello, World!\n");
  return 0;
}
#include <iostream>

int main() {
  std::cout << "Hello, World!" << std::endl;
  return 0;
}
print('Hello, World!')
#!/bin/bash

echo "Hello, World!"
public class HelloWorld {
  public static void main(String[] args) {
    System.out.println("Hello, World!");
  }
}
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Hello World</title>
</head>

<body>
  <h1>Hello, World!</h1>
</body>

</html>
/* helloworld.css */

body {
  margin: 0;
  padding: 0;

  color: #333;
  background-color: #f0f0f0;

  font-family: Arial, sans-serif;
}

h1 {
  margin-top: 50px;

  text-align: center;

  color: #0073e6;
}

p {
  text-align: center;

  font-size: 18px;
}
console.log("Hello, World!");
fn main() {
  println!("Hello, world!");
}
2021-01-01 00:00:00,000 INFO Hello, world!
2021-01-01 00:00:00,000 DEBUG Hello, world!
2021-01-01 00:00:00,000 WARN Hello, world!