Last active
December 31, 2020 08:55
-
-
Save dharnnie/cf874d586dd0f24eaf4b8729f5c2e001 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
func main() { | |
var cardiB string = "Ace of Spades" | |
card := "Ace of Spades" | |
card = "Card of Diamonds" | |
fmt.Println(cardiB) | |
fmt.Println(card) | |
fmt.Println(card2) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment