Inspiration

To try something new, to explore.

What it does

It can implement most of the logic that a programming language does.

How we built it

We are using it

Challenges we ran into

Not every logic is easy to implement in this language

Accomplishments that we're proud of

Learn it at some extent

What we learned

the basics of Go language

What's next for Go-Language

To learn more and make some Projects.

Built With

Share this project:

Updates

posted an update

Program to add 2 numbers in Go-Language :-

package main import ( "fmt" ) func add_values(a int, b int) int { var c = a + b return c } func main() { var a, b, c int fmt.Println("Enter 1st Number: ") fmt.Scan(&a) fmt.Println("Enter 2nd Number: ") fmt.Scan(&b) c = add_values(a , b) fmt.Printf("Sum: %d \n", c) }

Output :-

Enter 1st Number: 10 Enter 2nd Number: 20 Sum: 30

Log in or sign up for Devpost to join the conversation.