Haskell

From bibbleWiki
Revision as of 21:08, 10 February 2025 by Iwiseman (talk | contribs)
Jump to navigation Jump to search

Introduction

This is my first dip into Haskell, just felt like trying it

Hello World

Here we start with main and strange format but no curly brackets which is good.

main :: IO()
main = putStrLn "Hello World"