Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 02variables/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import "fmt"

const LoginToken string = "ghabbhhjd" // Public
const LoginToken string = "hitesh choudhary" // Public

func main() {
var username string = "hitesh"
Expand All @@ -17,7 +17,7 @@ func main() {
fmt.Println(smallVal)
fmt.Printf("Variable is of type: %T \n", smallVal)

var smallFloat float64 = 255.45544511254451885
var smallFloat float64 = 255.455445112
fmt.Println(smallFloat)
fmt.Printf("Variable is of type: %T \n", smallFloat)

Expand Down