diff options
Diffstat (limited to 'lecture2/hello.c')
| -rw-r--r-- | lecture2/hello.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lecture2/hello.c b/lecture2/hello.c new file mode 100644 index 0000000..2c8db64 --- /dev/null +++ b/lecture2/hello.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +int main(){ + double float test = 5; + printf("Hello, world!\n"); +} |
