First Post

news
code
Published

May 20, 2026

This is a post to test what stuff can i actually write on a qmd file.

def f(x: int):
    return x+1
Warning

Be careful of not writing functions like these in python, and using lambda expressions instead.

For example, we can initialize a function object that matches the aforementioned procedure, as follows,

    # Initializing function object.
    f = lambda x : x + 1

    # Evaluating the function at a specific point.
    x0 = 5 ; eval_f_x0 = f(x0);

    # Printing the result.
    print(eval_f_x0)

A dumby dumbo image