Home



title: "My Awesome Document" date: 2023-10-27

Let's Talk About Stuff

This is a paragraph explaining some things. It's really quite simple, actually. We can even add some bold text for emphasis.

console.log("Hello, world!");

Here's a link to Google.

And another paragraph. This one is slightly different.

def my_function():
 print("Python code here.")
Plain text example
#include <iostream>


int main() {
 std::cout << "C++ example" << std::endl;
 return 0;
}
{
 "key": "value"
}
<root>
 <element attribute="value">Text</element>
</root>
key: value
SELECT * FROM table;
echo "Hello from bash"
using System;


public class Example {
 public static void Main(string[] args) {
 Console.WriteLine("C# example");
 }
}
package main


import "fmt"


func main() {
 fmt.Println("Go example")
}
public class Main {
 public static void main(String[] args) {
 System.out.println("Java example");
 }
}
fun main() {
 println("Kotlin example")
}
puts "Ruby example"
fn main() {
 println!("Rust example");
}
object Main extends App {
 println("Scala example")
}
print("Swift example")
console.log("TypeScript example");
Module Program
 Sub Main()
 Console.WriteLine("VB.NET example")
 End Sub
End Module
print "Perl example\n";
<?php
echo "PHP example";
?>
print("R example")
void main() {
 print('Dart example');
}
print("Lua example")
Write-Host "PowerShell example"
console.log "CoffeeScript example"
IO.puts "Elixir example"
printfn "F# example"
main = putStrLn "Haskell example"
#import <Foundation/Foundation.h>


int main(int argc, const char * argv[]) {
 @autoreleasepool {
 NSLog(@"Objective-C example");
 }
 return 0;
}
println("Julia example")
with Ada.Text_IO; use Ada.Text_IO;


procedure Hello is
begin
 Put_Line ("Ada example");
end Hello;
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO-WORLD.
PROCEDURE DIVISION.
 DISPLAY "COBOL example".
 STOP RUN.
program hello
 print *, "Fortran example"
end program hello
(print "Lisp example")
hello :- write('Prolog example'), nl.
(display "Scheme example")
(newline)
Transcript show: 'Smalltalk example'
puts "Tcl example"
'APL example'
section .data
 msg db 'Assembly example', 0


section .text
 global _start


_start:
 ; Write to stdout
 mov eax, 4 ; sys_write
 mov ebx, 1 ; stdout
 mov ecx, msg ; message address
 mov edx, 16 ; message length
 int 0x80 ; call kernel


 ; Exit program
 mov eax, 1 ; sys_exit
 xor ebx, ebx ; exit code 0
 int 0x80 ; call kernel
++++++++++[>++++++++>+++++++++++>+++++<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.
(println "Clojure example")
-module(hello).
-export([start/0]).


start() ->
 io:format("Erlang example~n").
." Forth example" cr
print_endline "OCaml example";
program HelloWorld;
begin
 writeln('Pascal example');
end.
BEGIN
 DBMS_OUTPUT.PUT_LINE('PL/SQL example');
END;
/
#lang racket
(displayln "Racket example")
BEGIN
 OUTTEXT("Simula example");
 OUTIMAGE;
END
module hello;
 initial begin
 $display("SystemVerilog example");
 end
endmodule
library ieee;
use ieee.std_logic_1164.all;


entity hello is
end hello;


architecture Behavioral of hello is
begin
 process
 begin
 report "VHDL example";
 wait;
 end process;
end Behavioral;
Module Module1


 Sub Main()
 Console.WriteLine("Visual Basic example")
 End Sub


End Module
module hello;
 initial begin
 $display("Verilog example");
 end
endmodule
echo "Zsh example"
BEGIN { print "Awk example" }
@echo off
echo Batch example
cmake_minimum_required(VERSION 3.0)
project(HelloWorld)


message("CMake example")
import std.stdio;


void main() {
 writeln("D example");
}
program Hello;
begin
 Writeln('Delphi example');
end.
class
 HELLO


create
 make


feature


 make
 do
 print ("Eiffel example%N")
 end


end
import Html exposing (text)


main =
 text "Elm example"
"Factor example" print
query {
 hello
}
module Main


main : IO ()
main = putStrLn "Idris example"
'J example'
default
{
 state_entry()
 {
 llSay(0, "LSL example");
 }
}
disp('MATLAB example');
echo "Nim example"
disp("Octave example");
/ Q example
/ Display a string
"Q example"
data _null_;
 put "SAS example";
run;
s/^/Sed example\n/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


contract HelloWorld {
 function hello() public pure returns (string memory) {
 return "Solidity example";
 }
}
parameters {
 real y;
}
model {
 y ~ normal(0, 1);
}
#include "systemc.h"


SC_MODULE(hello) {
 SC_CTOR(hello) {
 cout << "SystemC example" << endl;
 }
};


int sc_main(int argc, char* argv[]) {
 hello h("h");
 return 0;
}
output "message" {
 value = "Terraform example"
}
{{ 'Twig example' }}
Sub Main()
 MsgBox "VBA example"
End Sub
(module
 (func (export "hello")
 (result i32)
 (i32.const 42)
 )
)
Print["Wolfram Language example"]
section .data
 msg db 'x86 Assembly example', 0


section .text
 global _start


_start:
 ; Write to stdout
 mov eax, 4 ; sys_write
 mov ebx, 1 ; stdout
 mov ecx, msg ; message address
 mov edx, 21 ; message length
 int 0x80 ; call kernel


 ; Exit program
 mov eax, 1 ; sys_exit
 xor ebx, ebx ; exit code 0
 int 0x80 ; call kernel
%{
#include <stdio.h>
%}


%%
line :  '\n' { printf("Yacc example\n"); }
 ;


%%
int main() {
 return yyparse();
}


int yyerror(char const* s) {
 fprintf(stderr, "%s\n", s);
 return 0;
}
void setup() {
 Serial.begin(9600);
 Serial.println("Arduino example");
}


void loop() {
 // put your main code here, to run repeatedly:
}
display dialog "AppleScript example"
public aspect HelloAspect {
 pointcut executionOfMain() : execution(public static void main(String[]));


 before() : executionOfMain() {
 System.out.println("AspectJ example");
 }
}
#include "share/atspre_staload.hats"


int main() = {
 println! ("ATS example") ;
 return 0 ;
}
MsgBox, AutoHotkey example
import ballerina/io;


public function main() returns error? {
 io:println("Ballerina example");
}
"BC example"
quit
>              v
v  ,,,,,"olleH"<
>,,,,"dlrow!" ^
^              <
%{
#include <stdio.h>
int yylex();
void yyerror(const char *s);
%}


%%
program:
 | program line '\n' { printf("Bison example\n"); }
 ;


line:
 ;


%%


int main() {
 return yyparse();
}


void yyerror(const char *s) {
 fprintf(stderr, "%s\n", s);
}
name: hello-cabal
version: 0.1.0.0
synopsis: Simple Cabal Example
description: A very simple example
category: Example
author: Your Name
maintainer: your.email@example.com
copyright: 2023 Your Name
license: MIT
build-type: Simple
cabal-version: >= 1.10


executable hello-cabal
 main-is: Main.hs
 build-depends: base >=4.7 && <5
 default-language: Haskell2010
shared void run() {
 print("Ceylon example");
}
writeln("Chapel example");
<<< "ChucK example" >>>;
.assembly extern mscorlib {}
.assembly hello {}
.method static void Main() cil managed
{
 .entrypoint
 .maxstack 1
 ldstr "CIL example"
 call void [mscorlib]System.Console::WriteLine(string)
 ret
}
:- include(library(clpfd)).


hello :-
 format('CLP(FD) example~n', []).
cmake_minimum_required(VERSION @CMAKE_VERSION@)
project(HelloWorld)


message("CMake.in example")
export module hello;


import std.iostream;


export {
 void say_hello() {
 std::cout << "C++ Module example\n";
 }
}
SELECT 'CQL example';
#include <iostream>


__global__ void hello_kernel() {
 printf("CUDA example from GPU!\n");
}


int main() {
 hello_kernel<<<1, 1>>>();
 cudaDeviceSynchronize();
 std::cout << "CUDA example from CPU!" << std::endl;
 return 0;
}
RETURN "Cypher example" AS message
.decl hello(s:symbol)
hello("Datalog example").
.output hello
; DNS Zone File Example
$TTL 3600
@ IN SOA ns1.example.com. admin.example.com. (
 2023102701 ; Serial
 3600  ; Refresh
 1800  ; Retry
 604800  ; Expire
 3600  ; Minimum TTL
)


@ IN NS ns1.example.com.
ns1 IN A 192.168.1.10
FROM ubuntu:latest


RUN apt-get update && apt-get install -y --no-install-recommends cowsay


CMD cowsay "Docker example"
digraph G {
 node [shape=box];
 A -> B -> C;
 A -> D;
}
/client/verb/hello()
 set src.loc = null
 world << "DreamMaker example"
/dts-v1/;


/ {
 description = "Device Tree Example";
 compatible = "example,device-tree";


 example_node {
 property1 = <0x12345678>;
 property2 = "Example String";
 };
};
console.log("ECMAScript example");
{:message "EDN example"}
<%= "EEx example" %>
IO.puts "Elixir Script example"
import("stdfaust.lib");


process = os.osc("localhost", 5510) :> plot;
package examples.hello_world


transaction(greeting: String) {
 prepare(signer: AuthAccount) {}


 execute {
 log(greeting)
 }
}
SET TERM ^ ;


EXECUTE BLOCK AS
BEGIN
 RDB$SET_CONTEXT('USER_SESSION', 'MESSAGE', 'FirebirdSQL example');
END^


SET TERM ; ^


SELECT RDB$GET_CONTEXT('USER_SESSION', 'MESSAGE') FROM RDB$DATABASE;
: hello ." Forth200x example" ;
hello
<#-- FreeMarker Template -->
${"FreeMarker example"}
Print("GAP example");
G0 X0 Y0 Z0
G1 X10 Y10 Z10 F100
M30 ; Program end
print("GDScript example")
Feature: Hello World
 Scenario: Display a greeting
 Given I have a simple step
 When I execute that step
 Then I should see "Gherkin example"
#version 330 core


out vec4 FragColor;


void main()
{
 FragColor = vec4(1.0, 0.5, 0.2, 1.0);
}
set terminal png
set output "gnuplot_example.png"
plot sin(x)
module example.com/hello


go 1.17
=/  text
?:  (has-our ~zod)
 %-  (text 'Hello, Mars!')
%-  (text 'Hello, Earth!')
terraform {
 required_providers {
 aws = {
 source = "hashicorp/aws"
 version = "~> 3.0"
 }
 }
}


provider "aws" {
 region = "us-west-2"
}


output "message" {
 value = "HCL example"
}
float4 main(float2 uv : TEXCOORD) : SV_TARGET
{
 return float4(uv, 0, 1);
}
<!DOCTYPE html>
<html>
<head>
 <title>HTML Example</title>
</head>
<body>
 <h1>Hello, world!</h1>
 <p>This is an HTML example.</p>
</body>
</html>
module Main


main : IO ()
main = putStrLn "Idris2 example"
"Hello World"


when play begins:
 say "Inform 7 example.".
[Section]
key = value
message = INI example
"Ioke example" println
//HELLO JOB (ACCT),CLASS=A,MSGCLASS=A
//*
//STEP1 EXEC PGM=IEFBR14
//SYSOUT DD SYSOUT=*
{
 "message": "JQ example"
}
{
 message: "JSON5 example",
 // This is a comment
 unquoted: 'and you can quote them',
 singleQuotes: 'and escape "double quotes"',
 hexadecimal: 0xdecaf,
 leadingDecimal: .12345,
 trailingDecimal: 12345.,
 positiveSign: +1,
 trailingComma: true,
 "and, of course": "JSON5 allows commas"
}
{
 "@context": {
 "message": "http://example.org/message"
 },
 "message": "JSON-LD example"
}
/ K example
/ Display a string
"K example"
/ KDB+ example
/ Display a string
"KDB+ example"
rule hello {
 select when pageview "saying hello"
 pre {
 name := meta:name;
 }
 always {
 log info("KRL example: Hello " + name);
 }
}
#LabVIEW VI snippet, please do not edit!
#=========@@@@@H@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

Appearances