Test title

Added yes-clone miniproject
This commit is contained in:
raul 2024-01-16 21:01:29 +01:00
parent 696c069209
commit b3400252cb
1 changed files with 11 additions and 0 deletions

11
yes-clone/main.go Normal file
View File

@ -0,0 +1,11 @@
package main
import "fmt"
func main() {
var input string
fmt.Scan(&input)
for {
fmt.Println(input)
}
}