1
Fork 0
mirror of https://github.com/RGBCube/GoNew synced 2025-07-31 09:27:46 +00:00

Initial commit

This commit is contained in:
RGBCube 2023-04-10 22:27:08 +03:00
commit 1c77137a38
5 changed files with 107 additions and 0 deletions

5
new.go Normal file
View file

@ -0,0 +1,5 @@
package new
func New[T any](thing T) *T {
return &thing
}