Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 741 Bytes

README.md

File metadata and controls

37 lines (23 loc) · 741 Bytes

GCC.jpeg

Learning Yacc (programming language)

I know very little about the YACC language. This article will go over all of my knowledge of the YACC language:

Comments in Yacc

Comments in Yacc are identical to comments in C, JavaScript, Java, Google Go, C++, etc..

// This is a single line comment
/* This
is a multiline
comment */
/* Multi-line comments
* can also
* be written
* like this */

Other knowledge of the Yacc programming language

  1. Yacc stands for Yet Another Compiler Compiler

  2. Yacc is maintained by GNU

  3. Yacc is a UNIX scripting language

  4. Yacc uses the .yacc and .y file extensions

  5. No other knowledge of the YACC programming language.