diff --git a/go/l1.go b/go/l1.go index 25acd24..71ee551 100644 --- a/go/l1.go +++ b/go/l1.go @@ -1,8 +1,14 @@ package main -import "fmt" +import ( + "bufio" + "fmt" + "os" +) func main() { - fmt.Println("hello world") - fmt.Println("Hi") + read := bufio.NewReader(os.Stdin) + fmt.Println("Your name ") + name, _ := read.ReadString('\n') + fmt.Println("Your name %s", name) } diff --git a/html/image.jpeg b/html/image.jpeg new file mode 100644 index 0000000..1c28b82 Binary files /dev/null and b/html/image.jpeg differ diff --git a/html/l1.html b/html/l1.html new file mode 100644 index 0000000..81f8ca5 --- /dev/null +++ b/html/l1.html @@ -0,0 +1,34 @@ + + + + + + HTML + + + +
+

Site

+
+ +
+ пушок +

Сайт

+
+ + + \ No newline at end of file diff --git a/html/l2.html b/html/l2.html new file mode 100644 index 0000000..21703a0 --- /dev/null +++ b/html/l2.html @@ -0,0 +1,13 @@ + + + + + + HTML2 + + + +

Переход страница

+ + + \ No newline at end of file diff --git a/html/l3.html b/html/l3.html new file mode 100644 index 0000000..d1da19d --- /dev/null +++ b/html/l3.html @@ -0,0 +1,13 @@ + + + + + + HTML3 + + + +

Сайт 3

+ + + \ No newline at end of file