Ygen 0.1.2

Yet another code generation libary like LLVM
Documentation
# RUN: 
cargo run -p ylc -- -in=%s -o=out.o
gcc out.o -o a.exe
./a.exe
# IN:
define u32 @main() {
 entry:
    %0 = u32 64
    %1 = add u32 %0, 6

    %2 = u32 66

    %3 = cmp ge u32 %1, %2
    br cond %3 yeah, no
  
  yeah:
    ret u32 5

  no:
    ret u32 4
}

# EXIT_CODE=5