Advertisement
romerocm

day02-05-go-example-04

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