Started playing with C++ in vscode
This commit is contained in:
parent
6829b0457a
commit
85f88496cc
6
cpp/vscode/helloworld.cpp
Normal file
6
cpp/vscode/helloworld.cpp
Normal file
@ -0,0 +1,6 @@
|
||||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
std::cout << "Hello World!" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
2
python/lp3thw/Exercise05/ex5.py
Normal file → Executable file
2
python/lp3thw/Exercise05/ex5.py
Normal file → Executable file
@ -1,3 +1,5 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
myName = "Ganome"
|
||||
myAge = 35
|
||||
myHeight = 72
|
||||
|
||||
1
python/lp3thw/Exercise10/ex10.py
Normal file → Executable file
1
python/lp3thw/Exercise10/ex10.py
Normal file → Executable file
@ -1,3 +1,4 @@
|
||||
#!/usr/bin/env python3
|
||||
tabbyCat = "\tI'm Tabbed in."
|
||||
persianCat = "I'm Split\non a line."
|
||||
backslashCat = "I'm \\ a \\ cat."
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user