Somehow the print() method is not recognized anymore, I even tried reinstalling Xcode but no luck!

Try moving print("Hello") into your viewDidLoad() method. Place it between the curly braces following your viewDidLoad() method. As Phillip said, it must be written inside something that is executed, such as this function.
Your code should then look something like this:
override func viewDidLoad() {
super.viewDidLoad()
// Write your code here...
print("Hello")
}