Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How would I start learning how to program in Flex? [closed]

Tags:

apache-flex

Can anyone give me pointers to good books or web sites that teach how to do Flex programming?

like image 510
tvanfosson Avatar asked Oct 31 '08 11:10

tvanfosson


People also ask

What is Flex programming language?

Flex is an acronym that stands for "fast lexical analyzer generator. " It is a free alternative to Lex, the standard lexical analyzer generator in Unix-based systems. Flex was originally written in the C programming language by Vern Paxson in 1987.

How many sections are in the Flex program?

A flex program consists of three parts: the definition section, the rules section, and the user subroutines. The parts are separated by lines consisting of two percent signs. The first two parts are required, although a part may be empty. The third part and the preceding %% line may be omitted.

How does flex scanner work?

flex is a tool for generating scanners: programs which recognize lexical patterns in text. flex reads the given input files (or its standard input if no file names are given) for a description of the scanner to generate. The description is in the form of pairs of regular expressions and C code, called rules .


1 Answers

Check out Ten Great Ways to Learn Flex, but I think number one should be to use the Quickstarts on the Adobe Site.

like image 97
Galwegian Avatar answered Sep 19 '22 21:09

Galwegian