Formats and tooling

query.sql

select 1

_quarto.yml

project:
  type: website

data.json

{"x": 1}

deploy.sh

quarto render

Statistical and scientific

model.stan

parameters { real mu; }

analysis.do

regress y x

fast.cpp

int add(int a, int b) { return a + b; }

solver.f90

program main
end program

General purpose

app.ts

const x: number = 1

main.rs

fn main() {}

main.go

func main() {}

.gitignore

_site/