A new way to code is dawning. Build powerful web applications by simply expressing your intent.
Traditional web development buries your intentions under layers of boilerplate and ceremony. SunSed's Intent Compiler lets you write what you mean, directly.
// Traditional PHP:
<?php
echo "<p>Hello, " . htmlspecialchars($username) . "!</p>";
?>
// SunSed:
Hello, $username!