Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
2
Task/Reverse-a-string/LFE/reverse-a-string-1.lfe
Normal file
2
Task/Reverse-a-string/LFE/reverse-a-string-1.lfe
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
> (lists:reverse "asdf")
|
||||
"fdsa"
|
||||
2
Task/Reverse-a-string/LFE/reverse-a-string-2.lfe
Normal file
2
Task/Reverse-a-string/LFE/reverse-a-string-2.lfe
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
> (set encoded (binary ("åäö ð" utf8)))
|
||||
#B(195 165 195 164 195 182 32 195 176)
|
||||
2
Task/Reverse-a-string/LFE/reverse-a-string-3.lfe
Normal file
2
Task/Reverse-a-string/LFE/reverse-a-string-3.lfe
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
> (io:format "~tp~n" (list encoded))
|
||||
<<"åäö ð"/utf8>>
|
||||
2
Task/Reverse-a-string/LFE/reverse-a-string-4.lfe
Normal file
2
Task/Reverse-a-string/LFE/reverse-a-string-4.lfe
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
> (lists:reverse (unicode:characters_to_list encoded))
|
||||
"ð öäå"
|
||||
Loading…
Add table
Add a link
Reference in a new issue