mirror of
https://github.com/SourceFellows/gobuch.git
synced 2025-07-06 17:55:52 +02:00
8 lines
198 B
Go
8 lines
198 B
Go
//Package sampledoc zeigt wie man Integer Werte addiert.
|
|
package sampledoc
|
|
|
|
//Add addiert zwei Integer Werte und liefert das Ergebnis.
|
|
func Add(first int, second int) int {
|
|
return first + second
|
|
}
|