Core structure

This commit is contained in:
Matt Jadud
2025-11-29 17:05:21 -05:00
parent b80e2421f1
commit 0fbf88101f
4 changed files with 158 additions and 3 deletions

View File

@@ -7,5 +7,14 @@ import (
)
func main() {
fmt.Printf("True: %s", domain64.ReturnsTrue())
d64 := domain64.Domain64{
TLD: 1,
Domain: 1,
Subdomain: 1,
Path: 1,
}
result := d64.AsInt64()
fmt.Printf("%064b\n", result)
fmt.Printf("%016x\n", result)
fmt.Println(result)
}