Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions src/lib/Hero.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,22 @@
import CodeSamples from './CodeSamples.svelte'
</script>

<h1>Toit is a modern high-level language designed specifically for microcontrollers</h1>
<h1>Toit is a modern high-level language designed and optimised for
microcontrollers, and ready for use everywhere.</h1>

<p>
Toit is optimised for <strong>live reloading</strong> on your microcontroller. Your code runs
incrementally as you write it and you get <strong>instant feedback</strong>. Push changes over
your local
<strong>WiFi</strong> in two seconds and reserve your USB cable for charging your phone. You iterate
quickly, learn fast, and build better things.
Toit is an open source, object-oriented programming language originally created
for the modern 'Internet of Things'. The Toit language is:
- Modern, simple, and approachable
- High-level and object-oriented
- Declarative and statically analyzable
- Safe and garbage collected

With Toit, your code runs incrementally as you write it, with <strong>instant
feedback</strong>. You iterate quickly, learn fast, and build better things.
When used on your ESP32 microcontroller, Toit is optimised for efficient
resource usage and <strong>live reloading</strong>. Push your changes over
<strong>WiFi</strong> in seconds and reserve your USB cable for charging your phone.
</p>

<CodeSamples />
Expand Down
2 changes: 1 addition & 1 deletion src/lib/toit-examples/packages.toit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import morse

main:
morse.encode_string "hello world"
morse.encode-string "hello world"