Currently, comments in Miden assembly must be surround by # characters. Thus, even for single line comments we must write:
# this is a comment #
It is a bit annoying that we need to terminate single line comments with #. The main motivation for doing so was ease of parsing, and in fact parsing this style of comments is very easy (they are stripped out from the source code as im
A Typescript port of Adam Stark's C++ implementation of the chord recognition algorithm described in the paper : Real-Time Chord Recognition For Live Performance, A. M. Stark and M. D. Plumbley.
Currently, comments in Miden assembly must be surround by
#characters. Thus, even for single line comments we must write:It is a bit annoying that we need to terminate single line comments with
#. The main motivation for doing so was ease of parsing, and in fact parsing this style of comments is very easy (they are stripped out from the source code as im