fork download
  1. package main
  2.  
  3.  
  4. import (
  5. "fmt"
  6. )
  7.  
  8.  
  9. // Go won't read this line
  10.  
  11.  
  12. /*
  13. Everything here won't be read either.
  14. This is a multi-line comment.
  15. */
  16.  
  17.  
  18. func main() {
  19.  
  20. fmt.Println("Let's get started!")
  21.  
  22. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Let's get started!