https://vscodethemes.com/e/hanenbro.berba/berba
https://vscodethemes.com/e/saudes.izorra-themes/izorra-light
https://vscodethemes.com/e/HenriLima05.a-cup-of-coffee/coffee-light-and-red
https://vscodethemes.com/e/HelloTham.vsc-rosely-light/rosely-light
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
suite : Test | |
suite = | |
describe "Վեր կաց գնա մի թաս ջուր բեր գոնե էս ծաղիկները ջրի " | |
[ test "🪚" <| | |
\() -> | |
validate "Թաս" "Սղոց" | |
|> Expect.equal (Result.Err "Ախչի էտ սղոցը տեղը դիր, թասը հես ա") | |
, test "Վայ)) չէյ տեսել, պապա" <| | |
\() -> | |
validate "Թաս" "Թաս" |
Սա, կ'ենթադրեմ, որ ավելի հեշտ ա երբ ծնողների հետ չես ապրում ու մոտդ խառը փողեր չեն գնում գալիս, ինչպիսին են խանութի մանրը, հորից մանր֊մունր պրեմիաներ, հեռու բարեկամից ծրարով 3000 դրամ։ և հակառակը՝ տնեցիքին մանր֊մունր պաձձերժկա անելու անհսկելի տռանզակցիաներ, փոքր ախպորը պրեմիաներ խելոքության համար (mernem janin)
հերթական ամսեկան անձնական հաշվապահությունն (HAAH Inc.) էի լրացնում։ Մրգերի համար առանձնացրածից մի 2000ի կարգի ավելացել ա։ իսկ իրականում առանձնացրածիցս շատ եմ ծախսել։ Սա նրանից ա որ ժմն առ ժմն մոտիս փողերից չէի առնում, այլ վերոնշյալ խառը փողերից։
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
removeDuplicates : List a -> List a | |
removeDuplicates list = | |
case list of | |
[] -> | |
[] | |
first :: rest -> | |
if List.member first rest then | |
removeDuplicates rest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
while inotifywait -e modify ./src; do | |
ELM_FILES=$(find ./src -name '*.elm') | |
echo "Watching $ELM_FILES" | |
elm make $ELM_FILES | |
done |