From 60806feabd2c2c26128ec4b7e8ba9aaa5e52c062 Mon Sep 17 00:00:00 2001 From: ADITYASHAH2801 <37467941+ADITYASHAH2801@users.noreply.github.com> Date: Sat, 17 Mar 2018 12:26:48 +0530 Subject: [PATCH] ADI/CSIS --- TASK1 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 TASK1 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") +}