Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 301 Bytes

exercise.md

File metadata and controls

20 lines (13 loc) · 301 Bytes

User Input

Objectives

  1. Modify the following program to ask for a name and an age
    1. Modify the print statement accordingly
package main

import "fmt"

func main() {
    fmt.Printf("Your name is ___ and your age is ___")
}

Solution

Click here to view the solution