Version Control Git and VSCode: php file document block @version code example
Example 1: vs code Modified
'M' represents a file that has been modified.
Example 2: how to save files in a repository visual studio code
def fib(number):
if number in [0, 1]:
return 1
else:
return fib(number - 2) + fib(number - 1)