Skip to content

Instantly share code, notes, and snippets.

@mbjelac
Last active March 1, 2019 08:40
Show Gist options
  • Save mbjelac/96a141cd1a67f76e19b0c14191a90bff to your computer and use it in GitHub Desktop.
Save mbjelac/96a141cd1a67f76e19b0c14191a90bff to your computer and use it in GitHub Desktop.
Resolved "extraction TODO"
function launch() {
trajectory = calculateTrajectory();
// use trajectory...
}
function calculateTrajectory() {
x = 6;
y = 7;
traj = x * y;
return traj;
}
@mbjelac
Copy link
Author

mbjelac commented Mar 1, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment