No program outputs when running a simple test

Hi
Im trying to run a simple example of sentiment-analysis with bash/intellij
The programs runs without errors (Process finished with exit code 0) but i dont have any outputs as expected

from transformers import pipeline
classifier = pipeline(“sentiment-analysis”)
classifier(“I’ve been waiting for a HuggingFace course my whole life.”)

Can you help please