master
Evan Chen 2021-10-25 12:35:37 +08:00
parent 6b6ad975f3
commit b8a4b13d5f
1 changed files with 7 additions and 7 deletions

View File

@ -10,13 +10,13 @@ RUN echo '{"app_name":"Go Playground","no_reconfig":true \
,"files":[{"path":"main.go","name":"Main","action":"go run main.go","order":-1},{"path":"shell.sh","name":"Shell","action":"bash shell.sh","order":1}] \
,"hide_config":true}' > conf.json
RUN echo 'package main \
\
import "fmt" \
\
func main() { \
fmt.Println("Hello, world.") \
}' > main.go
RUN echo 'package main\n\
\n\
import "fmt"\n\
\n\
func main() {\n\
fmt.Println("Hello, world.")\n\
}\n' > main.go