소스 검색

first haskell program

George C. Privon 2 년 전
부모
커밋
e8b3007dab
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      02-basicfunctions/01-first.hs

+ 11 - 0
02-basicfunctions/01-first.hs

@@ -0,0 +1,11 @@
+-- First Haskell program
+-- George C. Privon
+-- 2023-09-04
+
+-- Define a constant
+e :: Double
+e = exp 1
+
+-- Define a function
+square :: Double -> Double
+square x = x ^ 2