python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How many BNF-like grammar specifications does Python have?
There are at least 3 grammar-like specifications within the Python 3.9.1 reference documents 'library-3.9.1.pdf' and 'reference-3.9.1.pdf' (aka https://docs.python.org/3.9/library/ast.html and https:/...
berniethejet
Votes: 0
Answers: 1
Ruby EBNF COMPSTMT iteration misunderstanding
Here is a basic Ruby program:
puts 1
puts 1
puts 1
puts 1
puts 1
puts 1
puts 1
Here are the top rules of the BNF syntax for Ruby (shortened):
source: https://github.com/goruby/goruby/blob/master/goru...
Gopridkalnik
Votes: 0
Answers: 1
Is there an official (complete) BNF or EBNF for the CLIPS language
I am looking for an official BNF/EBNF for The CLIPS Programming Language, so that I can write a parser/interpreter that groks (understands) CLIPS rules.
I have searched online, including the official ...
Homunculus Reticulli
Votes: 0
Answers: 1
How to describe this event log in formal BNF?
I have a very simple event log format, just I'm having difficulties describing it in BNF (for gocc ).
Here is my simple event log format:
timestamp nested-event-A Running
timestamp Start of nested-eve...
xpt
Votes: 0
Answers: 2