Otter@lemmy.ca to Programming@programming.devEnglish · 2 years agoAmber - the programming language compiled to Bashamber-lang.comexternal-linkmessage-square13linkfedilinkarrow-up172arrow-down17
arrow-up165arrow-down1external-linkAmber - the programming language compiled to Bashamber-lang.comOtter@lemmy.ca to Programming@programming.devEnglish · 2 years agomessage-square13linkfedilink
minus-squareOtter@lemmy.caOPlinkfedilinkEnglisharrow-up21·2 years agoI think it’s to make it easier to write bash scripts, for those who are new or when the script is doing a more critical task Modern Syntax You will find many of the language features familiar, allowing you to get up and running much faster than if you were learning Bash from scratch. Runtime Safety It’s one of the key components missing from regular shell scripts. It can help you catch many bugs at compile time. Type Safety Amber ensures that you handle everything that could fail. Each Bash command and function that could fail must be handled in some way.
minus-squareVubDapple@lemmy.worldlinkfedilinkarrow-up8arrow-down2·2 years agoOk, I guess that makes sense. Bash is a pretty old school language for those raised in the functional programming era
minus-squareThe Bard in GreenAlinkfedilinkEnglisharrow-up3·2 years agoSo if you’re already pretty good at bash would you bother to switch and learn this?
I think it’s to make it easier to write bash scripts, for those who are new or when the script is doing a more critical task
Ok, I guess that makes sense. Bash is a pretty old school language for those raised in the functional programming era
So if you’re already pretty good at bash would you bother to switch and learn this?