Skip to content
View MahanthMohan's full-sized avatar
🥽
Understanding things!
🥽
Understanding things!

Block or report MahanthMohan

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
MahanthMohan/README.md
package main

import (
	"fmt"
	"math"
)

type human interface {
	potential() float32		
}

type mahanth struct {
	time float32
	duration float32
}

func (m mahanth) potential() float32 {
	return Math.Pow(m.time, m.duration)
}

func (avg human, doer human) finalResult() {
	fmt.Printf("This, %f, is the difference!", doer.potential() - avg.potential())
}

func main() {
	mahanth1, mahanth2 := mahanth{1.01, 365}, mahanth{1.03, 365}
	fmt.Println("Hello! I am Mahanth, an avid Mathematician and a Backend Programmer")
	fmt.Println("There is a saying. You only realize your true potential")
	fmt.Println("only when you start doing things.")
	finalResult(mahanth1, mahanth2)
}

Pinned Loading

  1. Java-Programs Java-Programs Public

    A nearly complete collection of the commonly used mathematical operations coded using objects and methods, including the Java principle of inheritance and interface

    Java

  2. Data-Science Data-Science Public

    As the name of the repo suggests, this has a lot to do with Data Science. Includes various techniques such as clustering, classification, K-Nearest neighbors, K-fold cross validation, Logistic Regr…

    Jupyter Notebook 1

  3. GopherChat GopherChat Public

    A simple chat app written in Go that allows you to message other people using the terminal. It is an extension of Revochat, with direct message (DM) features that allow the user to send messages di…

    Go

  4. GoWiki GoWiki Public

    A simple wiki page where you can create and view articles. Created using Go and React

    JavaScript 1

  5. Discover Discover Public

    A website to help you discover yourself!

    HTML

  6. Serializer Serializer Public

    A simple JSON serializer that can encode and decode data from a file already in valid JSON format into a Hashmap, and deserialize it back into the original JSON string

    Rust