Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
smileynet000 committed Aug 5, 2020
1 parent 5a67be5 commit 0caf579
Show file tree
Hide file tree
Showing 18 changed files with 3,074 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# biflex

BIFLEX
======

A simple language I made to make bison and flex work together better.
Binary file added biflex/BIN/biflex.exe
Binary file not shown.
Binary file added biflex/DIST/a-a/biflex-BIN-a-a.zip
Binary file not shown.
Binary file added biflex/DIST/a-a/biflex-DOC-a-a.zip
Binary file not shown.
Binary file added biflex/DIST/a-a/biflex-SOURCE-a-a.zip
Binary file not shown.
Binary file added biflex/DIST/a-a/biflex-TPL-a-a.zip
Binary file not shown.
Binary file added biflex/DIST/a/biflex-bin-a.zip
Binary file not shown.
Binary file added biflex/DIST/a/biflex-src-a.zip
Binary file not shown.
Binary file added biflex/DIST/a/biflex-tpl-a.zip
Binary file not shown.
451 changes: 451 additions & 0 deletions biflex/DOC/fdl.txt

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions biflex/DOC/format_and_syntax.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
Copyright (c) 2020 Dennis Earl Smiley.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled "GNU
Free Documentation License".


CHANGELOG
=========

8/5/20 Origional a - The first version.


GENERAL FORMAT
==============

BISON FILE

%%%

FLEX FILE


COMMENTS
========

Use the usual comments unless you need it to not be in the resulting bison and flex files. In this case, use /** **/ format.


COMMAND LINE
============

biflex <input file>.biflex

This will generate a .ypp file and a .lpp file. You can compile them the way you would bison and flex, when you are using a hack to use C++. Then you can compile the C++ the way you would any C++ file.


BISON AND FLEX TUTORIALS
========================

* https://www.gnu.org/software/bison/manual/bison.html
* https://aquamentus.com/flex_bison.html
674 changes: 674 additions & 0 deletions biflex/DOC/gpl.txt

Large diffs are not rendered by default.

Loading

0 comments on commit 0caf579

Please sign in to comment.