Add new functions: 'concat', 'range' and 'Map' constructor

This commit is contained in:
Bartłomiej Pluta
2019-07-09 20:54:56 +02:00
parent 7d14b0cbe7
commit b4d5d11b84
5 changed files with 80 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
from smnp.environment.environment import Environment
from smnp.library.function import display, sleep, semitones, interval, combine, flat, wait, rand, tuplet, synth, pause, \
transpose, type, exit, duration, octave, debug, get, sound, play
transpose, type, exit, duration, octave, debug, get, sound, play, map, concat, range
from smnp.type.model import Type
@@ -21,6 +21,9 @@ def createEnvironment():
pause.function,
transpose.function,
sound.function,
map.function,
concat.function,
range.function,
debug.function
]