diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..30d74d2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +test \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..b835f7a --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# Header 1 + +This is some text for the following code: +~~~c +#include +~~~ + +## Header 2 +- Bullet 1 +- Bullet 2 + +The `main.c` file + +> [!NOTE] +> Useful information that users should know, even when skimming content. + +> [!TIP] +> Helpful advice for doing things better or more easily. + +> [!IMPORTANT] +> Key information users need to know to achieve their goal. + +> [!WARNING] +> Urgent info that needs immediate user attention to avoid problems. + +> [!CAUTION] +> Advises about risks or negative outcomes of certain actions. diff --git a/main.py b/main.py index ce47b77..fa8a05f 100644 --- a/main.py +++ b/main.py @@ -1 +1,7 @@ -print("hello") \ No newline at end of file +func1 = lambda x,y : x*y +print(func1(5,6)) + +myList = [1,2,3,4,5] +func2 = lambda x: x*2 +result = map(func2, myList) +print(list(result)) \ No newline at end of file