https://github.com/kayprogrammer/booking_app
A simple cli application built with Go
https://github.com/kayprogrammer/booking_app
datatypes forloops golang ifelse print variables
Last synced: 7 months ago
JSON representation
A simple cli application built with Go
- Host: GitHub
- URL: https://github.com/kayprogrammer/booking_app
- Owner: kayprogrammer
- Created: 2023-03-20T00:13:52.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-24T17:37:44.000Z (almost 3 years ago)
- Last Synced: 2025-01-29T15:22:17.504Z (about 1 year ago)
- Topics: datatypes, forloops, golang, ifelse, print, variables
- Language: Go
- Homepage: https://go.dev/doc/
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## BASICS OF GOLANG
#### Tutorial: [Golang Tutorial for Beginners | Full Go Course](https://www.youtube.com/watch?v=yyUHQIec83I&t=2082s) by TechWorld with Nana
#### Go Docs: [Documentation](https://go.dev/doc/)
## How to run locally
* Download this repo or run:
```bash
$ git clone git@github.com:kayprogrammer/booking_app.git
```
#### In any terminal
- Install Go
```bash
$ sudo apt install golang
```
#### In the root directory:
- Build and run server
```bash
$ go run main.go
```
OR
```bash
$ go run .
```