Implement untupling and use more general append instead of ConvertedImageFilename

This commit is contained in:
2024-09-25 23:32:49 +02:00
parent fe87351976
commit 992edea3ee
5 changed files with 45 additions and 11 deletions

View File

@@ -6,6 +6,9 @@ import Types (Function(..), Value(..))
evalFunction :: Function -> Value -> Value
evalFunction f x = case (f, x) of
(AppendStrings, Tuple (String _, String _)) ->
String undefined
(JoinPaths, Tuple (String _, String _)) ->
String undefined
@@ -15,9 +18,6 @@ evalFunction f x = case (f, x) of
(IsImageExtension, String _) ->
Bool undefined
(ConvertedImageFilename, String _) ->
String undefined
(ApplyTemplate, Tuple (Template _, String _)) ->
String undefined