There is this error on my gdscript code for CharacterBody2D that is supposed to jump and fall. The error says this: Line 13:Unexpected "Identifier" in class body.
`extends CharacterBody2D
@export var jump_impulse = 20
func _physics_process(delta): #...
# Jumping.
if is_on_floor() and Input.is_action_just_pressed("jump"):
target_velocity.y = jump_impulse
#...
move_and_slide()`
according to the official docs of godot 4 its supposed to jump.