Shaswata Das

Results 2 issues of Shaswata Das

Added some more reply :smile:

```go package main import ( "github.com/diptomondal007/bdstockexchange" "log" ) func main() { dse := bdstockexchange.NewDSE() latestPrices, err := dse.GetLatestPricesSortedByPercentageChange() if err != nil { log.Println(err) } log.Println(latestPrices) } ```` It prints...