Hi I'm new to programming and I'm currently learning Python through LinkedIn and I'm stuck at on one of the sample codes
def main():
a, b = 1, 10
if(a < b):
st = "x is LESSER than y"
print(st)
It's not even showing any error messages so I'm confused right now. (My interpreter is Python 3.7.4)