Newbie Question: Make a servo turn 90 degrees and stop.

Here my latest attempt.

So, by now, you've figure that the thing that makes the servo actually move is

servo.write(pos);

Since you only want the servo to move once, and there are two functions, setup() and loop(), and one of them is executed once, and one is executed over and over, which one should contain the single statement to move the servo?

What value should be in pos to move the servo to 90?