Moving go code to subdir.

This commit is contained in:
2025-08-08 15:17:12 +02:00
parent 853bee22db
commit e8d042b65e
10 changed files with 17 additions and 24 deletions

6
code/functions/sum.go Normal file
View File

@@ -0,0 +1,6 @@
package functions
func sum(first int, second int) (result int) {
result = first + second
return
}