DLSystem handle music

This commit is contained in:
2022-07-02 01:29:18 +00:00
parent ec92fe80ce
commit f62b42f06b
5 changed files with 32 additions and 15 deletions

View File

@@ -131,6 +131,7 @@ class Kiss {
"fEighth" => Symbol("Prelude.fEighth"),
"fNinth" => Symbol("Prelude.fNinth"),
"fTenth" => Symbol("Prelude.fTenth"),
"uuid" => Symbol("Prelude.uuid"),
],
identAliases: [
// These ones won't conflict with variables and might commonly be used with (apply)

View File

@@ -461,6 +461,10 @@ class Prelude {
};
}
public static function uuid() {
return Uuid.v4().toShort();
}
// ReaderExp helpers for macros:
public static function symbol(?name:String):ReaderExpDef {
if (name == null)