File: bars.mg

package info (click to toggle)
midge 0.2.41%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 556 kB
  • sloc: perl: 5,508; modula3: 1,204; lisp: 869; makefile: 36; sh: 20
file content (25 lines) | stat: -rw-r--r-- 365 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@head {
	$bar_strict warn     # Print a warning for inconsistent bars.
	# $bar_strict error  # Exit with an error for inconsistent bars.

	$tempo 120
	$time_sig 4/4
}

@body {
	@channel 1 {
		$length 4
		$patch 1,1,1
		$volume 64

		|_1 c4 d e f |_2 g f e d
	}

	@channel 2 {
		$length 8
		$patch 1,1,1
		$volume 64

		|_1 c5 d e f g f e d |_2 c d e f g f e d
	}
}