#Python, 15 bytes
Python, 15 bytes
Python 2 (15)
exec"\150elp()"
It concatenates the strings uses the octal 150 which is h and "elp()" and runs the result. This prints the help() command which says "Welcome to Python 3.5's help utility!", meeting the requirements.
Python 3 (17)
exec("\150elp()")