r18 vs r19
......
175175
End Function
176176
End Module
177177
}}}
178
179
* GO
180
{{{#!syntax go
181
package main
182
183
import (
184
"fmt"
185
"io/ioutil"
186
"net/http"
187
)
188
189
func main() {
190
url := "https://www.google.com"
191
192
resp, err := http.Post(url, "application/x-www-form-urlencoded", nil)
193
if err != nil {
194
fmt.Println("error:", err)
195
return
196
}
197
defer resp.Body.Close()
198
199
fmt.Println(resp)
200
201
body, _ := ioutil.ReadAll(resp.Body)
202
fmt.Println(string(body))
203
}
204
}}}
205
178206
== 범죄 ==
179207
사이버 공격은 엄연한 범죄이다.