Add two numbers.
Usage
add( a, b, )
This function uses an executable code cell that should be run by Quarto during the build.
a: int
First number.
b: int
Second number.
int
The sum of a and b.
from gdtest_code_cells import add add(2, 3)
5