Writing A Compiler In Go を読んでいく Chapter 2 Compiler

こんにちわ、んだです。 今回も前回記事に引き続き、『Writing A Compiler In Go』 です。 nda-desu.hatenablog.com 今回はCompilerについて、触れていきます。 compiler_test まずはテストコードから眺めていきましょう。 // compiler/compiler_test.go package compiler func TestIntegerArithmetic(t *testing.T) { tes…