generation 3.0

This commit is contained in:
aljazbrodar. 2026-01-17 16:54:20 +01:00
parent d30c4a2e24
commit 59a65cf49e
7 changed files with 143 additions and 37 deletions

View file

@ -2,12 +2,9 @@ package main
import (
"fmt"
"strconv"
)
func main() {
test := "30"
var i int
i, _ = strconv.Atoi(test)
fmt.Println(i)
test := 65 + ((true ? 1 : 0) << 1) + ((true ? 1 : 0) << 0)
fmt.Println(test)
}