Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 493 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 493 Bytes

Currant-Logo

Currant is a single-threaded programming language that runs in the browser. It has simple interoperability with JavaScript and can be easily embedded into a webpage:

<!doctype html>
<html>
    <head>
        <script src="currant.js"></script>
        <currant-script>
            log("Hello, Currant!");
        </currant-script>
    </head>
    <body>
    </body>
</html>

Documentation for Currant is accessible here.