Note

Welcome to Fizzy Notes

By Fizzy

sample

Welcome to Fizzy Notes

This is a public sample note used to verify the first notes pipeline.

It supports normal Markdown:

  • lists;
  • bold text;
  • links such as Fizzy Space;
  • code blocks.

It also supports inline math such as a2+b2=c2\newcommand{\Mbegin}{\left[ \begin{matrix}} \newcommand{\Mend}{\end{matrix} \right]} \newcommand{\norm}[1]{\left\| #1 \right\|} \newcommand{\Q}{\mathbb{Q}} \newcommand{\Otil}{\widetilde{O}} \newcommand{\poly}{\mathrm{poly}} \newcommand{\diag}{\mathsf{diag}} \newcommand{\col}{\mathrm{col}} \newcommand{\la}{\langle} \newcommand{\ra}{\rangle} % macro test \newcommand{\Su}{\sum} a^2 + b^2 = c^2.

Block math works too:

k=0nk=n(n+1)2\newcommand{\Mbegin}{\left[ \begin{matrix}} \newcommand{\Mend}{\end{matrix} \right]} \newcommand{\norm}[1]{\left\| #1 \right\|} \newcommand{\Q}{\mathbb{Q}} \newcommand{\Otil}{\widetilde{O}} \newcommand{\poly}{\mathrm{poly}} \newcommand{\diag}{\mathsf{diag}} \newcommand{\col}{\mathrm{col}} \newcommand{\la}{\langle} \newcommand{\ra}{\rangle} % macro test \newcommand{\Su}{\sum} \Su_{k=0}^{n} k = \frac{n(n+1)}{2}
export function square(x: number) {
  return x * x
}