Exercises
Try to do the following exercises on your own:
- Run
cpuid.go
on your own machine and see the capabilities and features of your hardware. - Create a version of
cpuid.go
that writes the desired information in logs. - Fix the
AddInt()
function fromfuzz
/code.go
. - Create a function for integer multiplication that uses a
for
loop in its implementation. Write testing functions and fuzz testing functions for it.