Name resolution (programming languages): Difference between revisions

Content deleted Content added
Line 21:
For example, in the [[Python (programming language)|Python]] interactive [[REPL]]:
<source lang="pycon">
>>> number = 99999
>>> first_noun = "troubles"
>>> second_noun = "hound"
>>> # whichWhich variables to use are decided at runtime
>>> print(f"I got {number} {first_noun} andbut a {second_noun} ain't one.")
999I got 99 troubles andbut a hound ain't one.
 
</source>