diff --git a/src/lib/Hero.svelte b/src/lib/Hero.svelte index 28154a5..cf3b835 100644 --- a/src/lib/Hero.svelte +++ b/src/lib/Hero.svelte @@ -2,14 +2,22 @@ import CodeSamples from './CodeSamples.svelte' -

Toit is a modern high-level language designed specifically for microcontrollers

+

Toit is a modern high-level language designed and optimised for + microcontrollers, and ready for use everywhere.

- Toit is optimised for live reloading on your microcontroller. Your code runs - incrementally as you write it and you get instant feedback. Push changes over - your local - WiFi 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 instant + feedback. You iterate quickly, learn fast, and build better things. + When used on your ESP32 microcontroller, Toit is optimised for efficient + resource usage and live reloading. Push your changes over + WiFi in seconds and reserve your USB cable for charging your phone.

diff --git a/src/lib/toit-examples/packages.toit b/src/lib/toit-examples/packages.toit index ab1193b..7d12acc 100644 --- a/src/lib/toit-examples/packages.toit +++ b/src/lib/toit-examples/packages.toit @@ -1,4 +1,4 @@ import morse main: - morse.encode_string "hello world" \ No newline at end of file + morse.encode-string "hello world"