def hello():
print("Hello, World!")
const greet = (name) => {
console.log(`Hello, ${name}!`);
};
.container {
display: flex;
justify-content: center;
}
<div class="container">
<p>Hello</p>
</div>
npm install package-name
git commit -m "message"
SELECT * FROM users WHERE id = 1;
{
"name": "test",
"value": 123
}
version: '3'
services:
web:
image: nginx
# Heading
## Subheading
- List item
FROM python:3.9
COPY . /app
RUN pip install -r requirements.txt
server {
listen 80;
server_name example.com;
}
fn main() {
println!("Hello, Rust!");
}
package main
import "fmt"
func main() {
fmt.Println("Hello, Go!")
}
puts "Hello, Ruby!"
<?php echo "Hello, PHP!"; ?>
const message: string = "Hello, TypeScript!";
function App() {
return <div>Hello, React!</div>;
}