Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anosatsuk124/music_compose_framework.nim
A music composing framework written in Nim, powered by MML.
https://github.com/anosatsuk124/music_compose_framework.nim
mml music
Last synced: about 2 months ago
JSON representation
A music composing framework written in Nim, powered by MML.
- Host: GitHub
- URL: https://github.com/anosatsuk124/music_compose_framework.nim
- Owner: anosatsuk124
- License: apache-2.0
- Created: 2024-09-09T10:40:07.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-10T03:56:37.000Z (5 months ago)
- Last Synced: 2024-09-11T05:43:19.012Z (5 months ago)
- Topics: mml, music
- Language: Nim
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# music_compose_framework.nim
An MML music composing macro framework for Nim.
## Examples
```nim
defScore Part1:
n:
"l8 o5"
"dd {dd}{cc}dd d{ff}gg gffg dd2"
n 2: "dd{ff}a bbb{ff}ga"Part1()
```It will generate the following (MML code) output:
```txt
l8 o5
dd {dd}{cc}dd d{ff}gg gffg dd2
dd{ff}a bbb{ff}ga
dd{ff}a bbb{ff}ga
```## License Information
```
Copyright 2024 Satsuki AkibaLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```