Just a simple place to experiment with formatting, display snippets,
and see how everything looks inside your theme.
Say Hi to the world!
print("Hello, World!")#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}public class Main {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}console.log("Hello, World!");package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}fn main() {
println!("Hello, World!");
}<?php
echo "Hello, World!";#include <iostream>
using namespace std;
int main() {
cout << "Hello, World!";
return 0;
}using System;
class Program {
static void Main() {
Console.WriteLine("Hello, World!");
}
}echo "Hello, World!".hello::after {
content: "Hello, World!";
}<!DOCTYPE html>
<html>
<body>
Hello, World!
</body>
</html>SELECT 'Hello, World!';print("Hello, World!")fun main() {
println("Hello, World!")
}puts "Hello, World!"print("Hello, World!")
Comments