diff --git a/hello_world.py b/hello_world.py new file mode 100644 index 0000000..bd74085 --- /dev/null +++ b/hello_world.py @@ -0,0 +1,3 @@ +# This program prints Hello, world! + +print("Hello, world!") \ No newline at end of file diff --git a/print_num.py b/print_num.py new file mode 100644 index 0000000..8cece3a --- /dev/null +++ b/print_num.py @@ -0,0 +1,5 @@ +#Program for printing numbers from 1 to 10 + +for i in range(1, 11): + print(i) + \ No newline at end of file diff --git a/suspectglint/hello_world.c b/suspectglint/hello_world.c new file mode 100644 index 0000000..029d2aa --- /dev/null +++ b/suspectglint/hello_world.c @@ -0,0 +1,9 @@ +// Sample C program for printing hello world. + +#include + +int main() +{ + printf("Hello, world!"); + return 0; +}