νμ€ν μΉπ κ°λ°μ μ§λ§μ π§π½βπ»
β μΈκ³΅μ§λ₯ κ΄μ¬ π€
Categories
-
β£
βΆ COMPUTER_SCIENCE
π: 7 -
β£
βΆ WEB
π: 3 -
β£
βΆ ETC
π: 3-
β
β£
ETCS
π: 10 -
β
β£
SUBBRAIN κ°λ°κΈ°
π: 5 -
β
β
YOS κ°λ°κΈ°
π: 1
-
β
β£
-
β
βΆ AI
π: 9-
β£
AITOOLS
π: 3 -
β£
CV
π: 2 -
β£
DEEP_LEARNING
π: 1 -
β£
DATA_VIS
π: 2 -
β£
GRAPH
π: 1 -
β£
LIGHTWEIGHT
π: 1 -
β£
MATH
π: 1 -
β£
NLP
π: 3 -
β
STRUCTURED_DATA
π: 2
-
β£
OSSU PL-A Section 2
μΆμ² κ°μ Programming Languages, Part A, μμ±ν΄ λνκ΅
OSSU PL-A Section 2
μ νμ λ§λ€κΈ°
int
, string
, list
κ°μ κΈ°λ³Έ μ 곡 νμ
μ΄μΈμλ μ΄ νμ
λ€μ μ‘°ν©ν΄ μλ‘μ΄ νμ
μ λ§λ€ μ μλ€.
λν, μλ νμ λ€μ μλ‘, νΉμ μκΈ° μμ νμ κ³Ό μ€μ²©λ μ μμΌλ©°, μ΄λ₯Ό μ¬κ·ν νμ μ΄λΌκ³ νλ€.
Record (product-type)
nκ°μ νμ μ κ°κ° ν¬ν¨νκ³ μλ λ³΅ν© λ°μ΄ν°. each-of νμ μ΄λΌκ³ λ λΆλ¦°λ€.
ννμ΄λ, ν΄λμ€ λ΄λΆμ νλ λ±μ΄ ν΄λΉλ¨.
type x0 = {f1 = e1, ..., fn = en}
{foo : int, bar: int*bool, baz: bool*int}
λ΄λΆ μμλ κ΄κ³μμΌλ©°, ννμ μΌμ’ μ μμλ₯Ό ν€λ‘ νλ λ μ½λμ΄λ€.
#f1 x0 = e1
μμ κ°μ΄ #
ν€μλλ₯Ό ν΅ν΄ κ°μ μ κ·Ό κ°λ₯νλ€.
date type (sum-type)
nκ°μ νμ μ€ νλμΈ λ³΅ν© λ°μ΄ν°. one-of νμ μ΄λΌκ³ λ λΆλ¦°λ€.
enum
, 리μ€νΈ, option
λ±μ΄ ν΄λΉλ¨.
datatype x0 = c0 of t0 | c1 |...| cn of tn
datatype mytype = TwoInts of int * int
| Str of string
| Pizza
c0, cn
μ μμ±μλ‘, t0
νμ
μ x0
νμ
μΌλ‘ λ°κΏ μ€λ€. TwoInts(3,4)
λ mytype
μΌλ‘ λ°λλ€.
fun f (x: mytype) =
case x of
Pizza => 3
| TwoInts(i1, i2) => i1 + i2
| Str s => String.size s
μμ κ°μ΄ case
λ₯Ό ν΅ν΄ μ κ·Ό κ°λ₯νλ€.
option
λν μμ κ°μ΄ μ κ·Ό κ°λ₯νλ©°, κΈ°μ‘΄μ null
, valOf
λ³΄λ€ κΆμ₯νλ€.
μ¬κ·ν νμ μμ
datatype exp = Constant of int
| Negate of exp
| Add of exp * exp
| Multiply of exp * exp
fun eval e =
case e of Constant i =>
i
| Negate e2 => ~ (eval e2)
| Add(e1,e2) => (eval e1) + (eval e2)
| Multiply(e1,e2) => (eval e1) * (eval e2)
λ€ν νμ (Polymorphic type) νΉμ μΌλ° νμ (Generic)
λ€μκ³Ό κ°μ΄ λ€μν κ²°κ³Όκ°μ μλ£νμ΄ λμ¬ μ μλ κ²½μ°μλ λ€ν νμ ,(μΌλ°ν νμ )μ΄ μ΄μ©λλ€.
μ΄λ€μ ν΅ν΄ μ¬μ¬μ©μ± λμ ν¨μλ₯Ό λ§λ€ μ μλ€.
fun justfun x =
if true then x else x
x
λ μ΄λ ν κ°μ΄ λ€μ΄κ° μ μκ³ μ΄λ ν κ°μ΄ λμ¬ μ μλ€.
μ΄λ₯Ό sml
μμλ a'->a'
λ‘ νννλ€.
κ°μ λ€ν νμ
μΈλ° μλ‘ μλ£νμ΄ κ°κ±°λ λ¬λΌλ λλ κ²½μ°, μλ₯Ό κ²½μ° λ€μμ κ²½μ°λ (a'*b'*b') -> b'
λ‘ νκΈ°λλ€.
fun justfun2 (x, y, z) =
if x then y else z
λ§κ·Έλλ‘ a'
, b'
λ int
, string
, list
λ± μ¬λ¬ κ°μ΄ λ€μ΄ κ° μ μμΌλ©°, μ¬μ©μ μ μ μλ£νλ κ°λ₯νλ€.
_articles/computer_science/OSSU/PL/PLs/OSSU PL-A/OSSU PL-A Section 2.md