diff --git a/TASK1 b/TASK1 new file mode 100644 index 0000000..18d23c2 --- /dev/null +++ b/TASK1 @@ -0,0 +1,9 @@ +// Our first program will print the classic "hello world" +// message. Here's the full source code. +package main + +import "fmt" + +func main() { + fmt.Println("hello world") +}