Skip to content

Commit

Permalink
String library updated
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardo-imadeira committed Feb 23, 2024
1 parent e78cf17 commit 12146cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/String.ae
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ def String_lower : (i:String) -> String = native "lambda i: i.lower()" ;

def String_replace : (i:String) -> (j:String) -> (l:String)-> String = native "lambda i: lambda j: lambda l: i.replace(j, l)";

# def String_split : (i:String) -> (j:String) -> List[String] = native "lambda i: lambda j: i.split(j)" ;
def String_split : (i:String) -> (j:String) -> List = native "lambda i: lambda j: i.split(j)" ;

def String_concat : (i:String) -> (j:String) -> String = native "lambda i: lambda j: i + j";

0 comments on commit 12146cf

Please sign in to comment.