find_package
, target_include_directories
, target_link_libraries
. def fib(n):
a, b = 0, 1
while a < n:
print(a, end=' ')
a, b = b, a+b
print()
fib(1000)
def fib(n):
a, b = 0, 1
while a < n:
print(a, end=' ')
a, b = b, a+b
print()
fib(1000)
string total_1[] = {};
string total_1[10];
total_1[4] = "Hello, world!";
#include <vector>
...
vector<string> total_1;
total_1.push_back("Hello, world!");
git merge --no-ff <branch_name>
git --git-dir=../repo --work-tree=. add foo
git
указывать дополнительные параметры, но вы, конечно же можете сделать себе alias:alias git="git --git-dir=../repo --work-tree=."
alias webgit="git --git-dir=../repo --work-tree=."
for i in my:
if i in even:
my_even.append(i)
if i in odd:
my_odd.append(i)
git config --global core.autocrlf true