▲ 71 ▼ Unison | A friendly, statically-typed, functional programming language from the future · Unison programming language (www.unison-lang.org) submitted 2 years ago by starman@programming.dev to c/programming@programming.dev 44 comments fedilink hide all child comments A friendly programming language from the future.
[–] Solumbran@lemmy.world 65 points 2 years ago (1 child) helloWorld : '{IO, Exception} () helloWorld _ = printLine "Hello World" I wouldn't call it friendly. permalink fedilink source hideshow 2 child comments replies: [+] EasternLettuce@lemm.ee 4 points 2 years ago* (last edited 1 year ago) (3 children) [deleted] permalink fedilink source parent hideshow 6 child comments replies: [–] dneaves@lemmy.world 7 points 2 years ago* (1 child) Although, i would agree with it not necessarily being "friendly", since its a drastically different syntax than many beginners would be used to, the brackets and parenthesis here are not what you think they are. Unison is a language in the style of Haskell, F#, Purescript, Elm, etc. So that first line is actually type annotations. In Haskell, this would just be helloWorld :: IO () , meaning a function named "helloWorld" with no arguments and produces what is essentally a potentially-unsafe IO action with a Void return (the empty parenthesis () ). Here in Unison they call the bracket part "abilities" or something. Its saying the same thing as Haskell, but being more explicit in saying it can raise an exception. permalink fedilink source parent hideshow 2 child comments replies: [–] abhibeckert@lemmy.world -4 points 2 years ago* (1 child) Yeah sorry - that's just unnecessarily obtuse. Programming languages just don't need to be that convoluted. Hello world should look something like this: print("Hello, World!") And when you need more complexity, it can still be far simpler than Unison (or Haskel). For example this (in Swift): func processNumbers(_ numbers: [Int]) -> [Int] { return numbers.filter { $0 % 2 == 0 }.map { $0 * $0 } } let numbers = [1, 2, 3, 4, 5, 6] let processedNumbers = processNumbers(numbers) print(processedNumbers) permalink fedilink source parent hideshow 2 child comments replies: [–] dneaves@lemmy.world 2 points 2 years ago Hello world should look something like this: print("Hello, World"!) You don't need the annotation line in Haskell-esque languages, most of the time. Without the annotation, this is Hello World in Haskell: main = print "Hello, World!" And when you need more complexity, it can still be far simpler than Unison (or Haskell) import qualified Data.List as List import Data.Function ((&)) processNumbers numbers = let isEven n = mod n 2 == 0 in numbers & List.filter isEven & List.map (^2) main = processNumbers [1, 2, 3, 4, 5, 6] & print permalink fedilink source parent [–] hansl@lemmy.world 1 point 2 years ago (1 child) It’s not parenthesis (in the PEMDAS sense), it’s the unit type and it’s normally expressed like that. If you’re not familiar with type systems, it’s the typing equivalent of void. permalink fedilink source parent hideshow 2 child comments replies: [+] EasternLettuce@lemm.ee 2 points 2 years ago* (last edited 1 year ago) (1 child) [deleted] permalink fedilink source parent hideshow 2 child comments replies: [–] hansl@lemmy.world 1 point 2 years ago I’m not sure what you’re asking. Plenty of modern languages use the unit type; typescript, Rust, not sure you consider Haskell a modern language. From the look of it, this language seems to use it in a function signature declaration, which would make sense. permalink fedilink source parent [–] xigoi@lemmy.sdf.org 1 point 2 years ago What do you mean by flipped? Parentheses seem to group expressions like in most languages. permalink fedilink source parent
[+] EasternLettuce@lemm.ee 4 points 2 years ago* (last edited 1 year ago) (3 children) [deleted] permalink fedilink source parent hideshow 6 child comments replies: [–] dneaves@lemmy.world 7 points 2 years ago* (1 child) Although, i would agree with it not necessarily being "friendly", since its a drastically different syntax than many beginners would be used to, the brackets and parenthesis here are not what you think they are. Unison is a language in the style of Haskell, F#, Purescript, Elm, etc. So that first line is actually type annotations. In Haskell, this would just be helloWorld :: IO () , meaning a function named "helloWorld" with no arguments and produces what is essentally a potentially-unsafe IO action with a Void return (the empty parenthesis () ). Here in Unison they call the bracket part "abilities" or something. Its saying the same thing as Haskell, but being more explicit in saying it can raise an exception. permalink fedilink source parent hideshow 2 child comments replies: [–] abhibeckert@lemmy.world -4 points 2 years ago* (1 child) Yeah sorry - that's just unnecessarily obtuse. Programming languages just don't need to be that convoluted. Hello world should look something like this: print("Hello, World!") And when you need more complexity, it can still be far simpler than Unison (or Haskel). For example this (in Swift): func processNumbers(_ numbers: [Int]) -> [Int] { return numbers.filter { $0 % 2 == 0 }.map { $0 * $0 } } let numbers = [1, 2, 3, 4, 5, 6] let processedNumbers = processNumbers(numbers) print(processedNumbers) permalink fedilink source parent hideshow 2 child comments replies: [–] dneaves@lemmy.world 2 points 2 years ago Hello world should look something like this: print("Hello, World"!) You don't need the annotation line in Haskell-esque languages, most of the time. Without the annotation, this is Hello World in Haskell: main = print "Hello, World!" And when you need more complexity, it can still be far simpler than Unison (or Haskell) import qualified Data.List as List import Data.Function ((&)) processNumbers numbers = let isEven n = mod n 2 == 0 in numbers & List.filter isEven & List.map (^2) main = processNumbers [1, 2, 3, 4, 5, 6] & print permalink fedilink source parent [–] hansl@lemmy.world 1 point 2 years ago (1 child) It’s not parenthesis (in the PEMDAS sense), it’s the unit type and it’s normally expressed like that. If you’re not familiar with type systems, it’s the typing equivalent of void. permalink fedilink source parent hideshow 2 child comments replies: [+] EasternLettuce@lemm.ee 2 points 2 years ago* (last edited 1 year ago) (1 child) [deleted] permalink fedilink source parent hideshow 2 child comments replies: [–] hansl@lemmy.world 1 point 2 years ago I’m not sure what you’re asking. Plenty of modern languages use the unit type; typescript, Rust, not sure you consider Haskell a modern language. From the look of it, this language seems to use it in a function signature declaration, which would make sense. permalink fedilink source parent [–] xigoi@lemmy.sdf.org 1 point 2 years ago What do you mean by flipped? Parentheses seem to group expressions like in most languages. permalink fedilink source parent
[–] dneaves@lemmy.world 7 points 2 years ago* (1 child) Although, i would agree with it not necessarily being "friendly", since its a drastically different syntax than many beginners would be used to, the brackets and parenthesis here are not what you think they are. Unison is a language in the style of Haskell, F#, Purescript, Elm, etc. So that first line is actually type annotations. In Haskell, this would just be helloWorld :: IO () , meaning a function named "helloWorld" with no arguments and produces what is essentally a potentially-unsafe IO action with a Void return (the empty parenthesis () ). Here in Unison they call the bracket part "abilities" or something. Its saying the same thing as Haskell, but being more explicit in saying it can raise an exception. permalink fedilink source parent hideshow 2 child comments replies: [–] abhibeckert@lemmy.world -4 points 2 years ago* (1 child) Yeah sorry - that's just unnecessarily obtuse. Programming languages just don't need to be that convoluted. Hello world should look something like this: print("Hello, World!") And when you need more complexity, it can still be far simpler than Unison (or Haskel). For example this (in Swift): func processNumbers(_ numbers: [Int]) -> [Int] { return numbers.filter { $0 % 2 == 0 }.map { $0 * $0 } } let numbers = [1, 2, 3, 4, 5, 6] let processedNumbers = processNumbers(numbers) print(processedNumbers) permalink fedilink source parent hideshow 2 child comments replies: [–] dneaves@lemmy.world 2 points 2 years ago Hello world should look something like this: print("Hello, World"!) You don't need the annotation line in Haskell-esque languages, most of the time. Without the annotation, this is Hello World in Haskell: main = print "Hello, World!" And when you need more complexity, it can still be far simpler than Unison (or Haskell) import qualified Data.List as List import Data.Function ((&)) processNumbers numbers = let isEven n = mod n 2 == 0 in numbers & List.filter isEven & List.map (^2) main = processNumbers [1, 2, 3, 4, 5, 6] & print permalink fedilink source parent
[–] abhibeckert@lemmy.world -4 points 2 years ago* (1 child) Yeah sorry - that's just unnecessarily obtuse. Programming languages just don't need to be that convoluted. Hello world should look something like this: print("Hello, World!") And when you need more complexity, it can still be far simpler than Unison (or Haskel). For example this (in Swift): func processNumbers(_ numbers: [Int]) -> [Int] { return numbers.filter { $0 % 2 == 0 }.map { $0 * $0 } } let numbers = [1, 2, 3, 4, 5, 6] let processedNumbers = processNumbers(numbers) print(processedNumbers) permalink fedilink source parent hideshow 2 child comments replies: [–] dneaves@lemmy.world 2 points 2 years ago Hello world should look something like this: print("Hello, World"!) You don't need the annotation line in Haskell-esque languages, most of the time. Without the annotation, this is Hello World in Haskell: main = print "Hello, World!" And when you need more complexity, it can still be far simpler than Unison (or Haskell) import qualified Data.List as List import Data.Function ((&)) processNumbers numbers = let isEven n = mod n 2 == 0 in numbers & List.filter isEven & List.map (^2) main = processNumbers [1, 2, 3, 4, 5, 6] & print permalink fedilink source parent
[–] dneaves@lemmy.world 2 points 2 years ago Hello world should look something like this: print("Hello, World"!) You don't need the annotation line in Haskell-esque languages, most of the time. Without the annotation, this is Hello World in Haskell: main = print "Hello, World!" And when you need more complexity, it can still be far simpler than Unison (or Haskell) import qualified Data.List as List import Data.Function ((&)) processNumbers numbers = let isEven n = mod n 2 == 0 in numbers & List.filter isEven & List.map (^2) main = processNumbers [1, 2, 3, 4, 5, 6] & print permalink fedilink source parent
[–] hansl@lemmy.world 1 point 2 years ago (1 child) It’s not parenthesis (in the PEMDAS sense), it’s the unit type and it’s normally expressed like that. If you’re not familiar with type systems, it’s the typing equivalent of void. permalink fedilink source parent hideshow 2 child comments replies: [+] EasternLettuce@lemm.ee 2 points 2 years ago* (last edited 1 year ago) (1 child) [deleted] permalink fedilink source parent hideshow 2 child comments replies: [–] hansl@lemmy.world 1 point 2 years ago I’m not sure what you’re asking. Plenty of modern languages use the unit type; typescript, Rust, not sure you consider Haskell a modern language. From the look of it, this language seems to use it in a function signature declaration, which would make sense. permalink fedilink source parent
[+] EasternLettuce@lemm.ee 2 points 2 years ago* (last edited 1 year ago) (1 child) [deleted] permalink fedilink source parent hideshow 2 child comments replies: [–] hansl@lemmy.world 1 point 2 years ago I’m not sure what you’re asking. Plenty of modern languages use the unit type; typescript, Rust, not sure you consider Haskell a modern language. From the look of it, this language seems to use it in a function signature declaration, which would make sense. permalink fedilink source parent
[–] hansl@lemmy.world 1 point 2 years ago I’m not sure what you’re asking. Plenty of modern languages use the unit type; typescript, Rust, not sure you consider Haskell a modern language. From the look of it, this language seems to use it in a function signature declaration, which would make sense. permalink fedilink source parent
[–] xigoi@lemmy.sdf.org 1 point 2 years ago What do you mean by flipped? Parentheses seem to group expressions like in most languages. permalink fedilink source parent