pipeline { agent any stages { stage('Print Message') { steps { echo 'Hello World' } } } }