Skip to content

Instantly share code, notes, and snippets.

View R3DHULK's full-sized avatar
🏠
Working from home

Sumalya Chatterjee R3DHULK

🏠
Working from home
View GitHub Profile
@R3DHULK
R3DHULK / survival-game.go
Created March 28, 2023 17:28
Survival Game Written In Go
package main
import (
"fmt"
"math/rand"
"time"
)
const (
HungerRate = 10
@R3DHULK
R3DHULK / memory-card-game.go
Created March 28, 2023 17:26
Memory Card Game Written In Go
package main
import (
"bufio"
"fmt"
"math/rand"
"os"
"strings"
"time"
)
@R3DHULK
R3DHULK / rock-paper-scissor.go
Created March 28, 2023 17:22
Rock Paper Scissor Game Written In Go
package main
import (
"bufio"
"fmt"
"math/rand"
"os"
"strings"
"time"
)
@R3DHULK
R3DHULK / detective-game.go
Created March 28, 2023 17:12
Detective Game In Go
package main
import (
"bufio"
"fmt"
"os"
"strings"
)
type Clue struct {
@R3DHULK
R3DHULK / virtual-reality.go
Last active March 28, 2023 17:04
Virtual Reality Game Written In Go
package main
import (
"fmt"
"time"
)
type Player struct {
X, Y int
Health int
@R3DHULK
R3DHULK / virtual-pet-game.go
Created March 28, 2023 17:02
Virtual Pet Game Written In Go
package main
import (
"bufio"
"fmt"
"os"
)
type Pet struct {
Name string
@R3DHULK
R3DHULK / city-building-game.go
Created March 28, 2023 14:41
City Building Game Written In Go
package main
import (
"fmt"
"math/rand"
)
// City is a struct that contains information about a city
type City struct {
Name string
@R3DHULK
R3DHULK / mastermind.go
Created March 28, 2023 14:31
Mastermind Game In Go
package main
import (
"fmt"
"math/rand"
"strconv"
"time"
)
const (
@R3DHULK
R3DHULK / cowboy.go
Created March 28, 2023 14:10
Cowboy Game Written In Go
package main
import (
"fmt"
"math/rand"
"time"
)
type Player struct {
name string
@R3DHULK
R3DHULK / trivia.go
Created March 28, 2023 13:54
Trivia Game Written In Go
package main
import (
"bufio"
"fmt"
"os"
"math/rand"
"strings"
)