Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
schwalbe-t authored Jan 22, 2023
1 parent 10f0ca8 commit 2f515c2
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
![Currant-Logo](./logo.png)

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.
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:

```html
<!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](https://currant.netlify.app).

Documentation (still being worked on) is accessible [here](currant.netlify.app).

As you can maybe tell, this README is also still being worked on and will be finished once the language has been fully documented.

0 comments on commit 2f515c2

Please sign in to comment.