TTT

Specification

import WikiScore

-- DEMETRIO EXAMPLE

-- Prj attributes
title     = A "title" "TTT"
composer  = A "composer" "Anonym"
facsimile = A "facsimile" "http"
namespace = A "namespace" "ttt"

-- Prj Parts
pt1 = Prt "bass" 1 [A "sname" "bass"]

-- Prj Sections

s1= Sct "Intro" 1 (Sel [1]) []
-- etc

prj = initWSPproject
             "ttt"
             [ title, facsimile, composer, namespace ]
             [ pt1 ]
             [ s1 ] -- ordem trocada de proposito

main = prj2jsonFile prj

| Back to project index