Jump to content

User:Jacakira/sandbox

From Wikipedia, the free encyclopedia


Formulae[edit]

This is one way to calculate Pi known as Leibniz's formula:

This is the chemical formula for photosynthesis:

Other stuff[edit]

This is python:

def GCD(a, b):
    while a != b:
        if a > b:
            a -= b
        else:
            b -= a
    return a

This is the twinkle twinkle

\relative c' {
c2 c2 g'2 g2 a2 a2 g2 g2 f2 f2 e2 e2 d2 d2 c2
}
\layout {
   \context {
     \Staff
     \remove Time_signature_engraver
     \remove Bar_engraver
    }
 }