-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain2.go
45 lines (28 loc) · 830 Bytes
/
main2.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// package main
// import (
// "fmt"
// "net/http"
// )
// const portNumber = ":8080"
// // Home Page Handling
// func Home(w http.ResponseWriter, r *http.Request) {
// fmt.Fprintf(w, "This is HOME page")
// }
// // About Page Handling
// func About(w http.ResponseWriter, r *http.Request) {
// sum := AddValues(10, 10)
// _, _ = fmt.Fprintf(w, fmt.Sprintf("This is Sum 10 + 10 %d", sum))
// }
// // AddValuea 2 int's
// func AddValues(x, y int) int {
// return x + y
// }
// // Main Function
// func main() {
// http.HandleFunc("/", Home)
// http.HandleFunc("/about", About)
// fmt.Println(fmt.Sprintf("Starting Applicatiuon on Port: %s ", portNumber))
// _ = http.ListenAndServe(portNumber, nil)
// }
// // output
// //Starting Applicatiuon on Port: :8080