Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 357 Bytes

installation.md

File metadata and controls

27 lines (18 loc) · 357 Bytes

Installation

After installing Go 1.8+, get the Cloe interpreter.

go get github.com/cloe-lang/cloe/...

To test the installation, write a file main.cloe of the content:

#!/usr/bin/env cloe

(print "Hello, world!")

Finally, run the cloe command.

cloe main.cloe

You will see its output like:

Hello, world!