miniblog.

← Back to all posts
21
I'm looking at adding bitwise AND and OR to my programming language. Do I add & and | operators, methods x.and(y) or a library bitwise::and(x, y)? My inclination is to add infix operators (concise and familiar) but syntax is such precious real estate.