Loading lesson…
Time to get hands on. Install a real AI coding editor, sign in, and write your first line together. No credit card required to start.
You have two clean ways to get started in 2026: Cursor (a full AI-first IDE) or VS Code with the GitHub Copilot extension. Both have free tiers that are good enough for every lesson in this track. Pick one and stop agonizing over the choice.
# Type this comment on line 1:
# Function that returns the first N Fibonacci numbers as a list.
# Press Enter. Wait two seconds. Gray text should appear.
# Accept with Tab. You should see something like:
def fibonacci(n):
sequence = [0, 1]
while len(sequence) < n:
sequence.append(sequence[-1] + sequence[-2])
return sequence[:n]
print(fibonacci(10))If you see gray autocomplete text appear, your setup works. Save the file, open a terminal, and run `python fib.py`.The best editor is the one you actually open every day.
— Every senior dev, eventually
The big idea: setup is not the lesson, but it is the gate. Install one of these two, verify ghost text works, and you are ready for everything that follows.
15 questions · take it digitally for instant feedback at tendril.neural-forge.io/learn/quiz/end-coding-setting-up-cursor-builders
What is the core idea behind "Setting Up Cursor (or VS Code + Copilot) for Free"?
Which term best describes a foundational idea in "Setting Up Cursor (or VS Code + Copilot) for Free"?
A learner studying Setting Up Cursor (or VS Code + Copilot) for Free would need to understand which concept?
Which of these is directly relevant to Setting Up Cursor (or VS Code + Copilot) for Free?
Which of the following is a key point about Setting Up Cursor (or VS Code + Copilot) for Free?
Which of these does NOT belong in a discussion of Setting Up Cursor (or VS Code + Copilot) for Free?
Which statement is accurate regarding Setting Up Cursor (or VS Code + Copilot) for Free?
Which of these does NOT belong in a discussion of Setting Up Cursor (or VS Code + Copilot) for Free?
What is the key insight about "Which chat keyboard shortcut?" in the context of Setting Up Cursor (or VS Code + Copilot) for Free?
Which statement accurately describes an aspect of Setting Up Cursor (or VS Code + Copilot) for Free?
What does working with Setting Up Cursor (or VS Code + Copilot) for Free typically involve?
Which best describes the scope of "Setting Up Cursor (or VS Code + Copilot) for Free"?
Which section heading best belongs in a lesson about Setting Up Cursor (or VS Code + Copilot) for Free?
Which section heading best belongs in a lesson about Setting Up Cursor (or VS Code + Copilot) for Free?
Which section heading best belongs in a lesson about Setting Up Cursor (or VS Code + Copilot) for Free?