adding a few sample faq files

This commit is contained in:
Terence Parr 2015-10-25 15:09:29 -07:00
parent 52d45fe842
commit 25c8c8899c
3 changed files with 18 additions and 3 deletions

View File

@ -0,0 +1,11 @@
# Getting started
## How to I install and run a simple grammar?
See [Getting Started with ANTLR v4](https://theantlrguy.atlassian.net/wiki/display/ANTLR4/Getting+Started+with+ANTLR+v4).
## Why does my parser test program hang?
Your test program is likely not hanging but simply waiting for you to type some input for standard input. Don't forget that you need to type the end of file character, generally on a line by itself, at the end of the input. On a Mac or Linux machine it is ctrl-D, as gawd intended, or ctrl-Z on a Windows machine.
See [Getting Started with ANTLR v4](https://theantlrguy.atlassian.net/wiki/display/ANTLR4/Getting+Started+with+ANTLR+v4).

View File

@ -1,9 +1,9 @@
# Frequently-Asked Questions
# Frequently-Asked Questions (FAQ)
## Getting Started
* How to I install and run a simple grammar?
* Why does my parser test program hang?
* [How to I install and run a simple grammar?](getting-started.md)
* [Why does my parser test program hang?](getting-started.md)
## Installation

4
doc/faq/installation.md Normal file
View File

@ -0,0 +1,4 @@
# Installation
Why can't ANTLR (grun) find my lexer or parser?
Why can't I run the ANTLR tool?
Why doesn't my parser compile?