Another header

Some text explaining

print "hello"

Welcome to Formality-Core’s documentation!

Guide

Test blabla

name syntax JavaScript equivalent
addition \|x + y\| (x + y) >>> 0
subtraction \|x - y\| (x - y) >>> 0
multiplication \|x * y\| (x * y) >>> 0
division \|x / y\| (x / y) >>> 0
modulus \|x % y\| (x % y) >>> 0
exponentiation \|x ** y\| (x ** y) >>> 0
bitwise-and \|x & y\| x & y
bitwise-or \|x \| y\| x \| y
bitwise-xor \|x ^ y\| x ^ y
bitwise-not \|x ~ y\| ~y
bitwise-right-shift \|x >> y\| x >>> y
bitwise-left-shift \|x << y\| x << y
greater-than \|x > y\| x > y ? 1 : 0
less-than \|x < y\| x < y ? 1 : 0
equals \|x == y\| x === y ? 1 : 0

Warning

Here be dragons! This topic covers a number of options that might alter your database.

Proceed with caution!

dog_but.png

An overview of the admin control panel.

You can learn more about this in RFC 1984. It is implemented in our code at System.Security

1
2
3
4
import antigravity

def main():
    antigravity.fly()