8 lines
138 B
Text
8 lines
138 B
Text
|
|
func get(url: string) string {
|
|
res := request("GET", url, "")
|
|
|
|
return res.text
|
|
}
|
|
|
|
write(get("https://www.neemek.com/hello.txt"))
|