Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 289 Bytes

misc.md

File metadata and controls

26 lines (19 loc) · 289 Bytes

Misc

type

type :: (Any a) => a -> String

Get the literal type of a value.

Example :

(type True) ;; "Bool"

begin

Begin allow you to put serveral expressions in a block.

Example:

(begin
    (putStrLn "Hello, World !")
    55)
    ```