Unexpected "Identifier" on print()

Godot Version

v 4.2.1

Question

I simply typed print(“hello world”), and an error showed up that said Unexpected “Identifier” in class body, how do I fix this?

try

extends Node

func _ready():
	print("hello world")