mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
9 lines
109 B
Go
9 lines
109 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
value := 20
|
|
fmt.Printf("Value1 = %v%%", value) // Value1 = 20%
|
|
}
|