Advertisement
romerocm

day02-05-go-example-03

Apr 19th, 2022
1,239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.32 KB | None | 0 0
  1. package main
  2.  
  3. import "fmt"
  4.  
  5. func main() {
  6.     var challenge = "#DevOpsTraineeProgram"
  7.     const daystotal = 60
  8.     var dayscomplete = 11
  9.  
  10.     fmt.Println("Welcome to", challenge, "")
  11.     fmt.Println("This is a", daystotal, "challenge and you have completed", dayscomplete, "days")
  12.     fmt.Println("Great work")
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement