# cython: language_level=3 # L-15 MCS 507 Mon 25 Sep 2023 : hello.pyx """ This file is needed for our first "hello world" with Cython, see the file hello_setup.py to build the shared object file. """ def say_hello(name): """ Prints hello followed by the name. """ print("hello", name)