Skip to content

A repository for showcasing my knowledge of the Yacc programming language, and continuing to learn the language.

License

Notifications You must be signed in to change notification settings

seanpm2001/Learn-Yacc

Repository files navigation


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.