Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 319 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 319 Bytes

Example

package main

import (
	"github.com/Lutwidse/EightBit"
	"fmt"
)

func main() {
	btc := EightBit.Get_btc_jpy()
	fmt.Println(btc.Sell)
	fmt.Println(btc.Buy)
	fmt.Println(btc.High)
	fmt.Println(btc.Low)
	fmt.Println(btc.Last)
	fmt.Println(btc.Vol)
	fmt.Println(btc.Timestamp)
}