Skip to content

Instantly share code, notes, and snippets.

@thinkphp
Created January 3, 2020 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thinkphp/16b2713beb1d91561b969906fe652e77 to your computer and use it in GitHub Desktop.
Save thinkphp/16b2713beb1d91561b969906fe652e77 to your computer and use it in GitHub Desktop.
Title.Svelte
<script>
export let name;
export let version;
export let speed;
export let website;
</script>
<h1>Goldback's conjecture</h1>
<p>
The <code>{name}</code> package is {speed} fast.<br/>
Download version {version} from <br/> <a href="https://www.npmjs.com/package/{name}">npm</a>
and <a href={website}>learn more here</a>
</p>
<h2>Every even integer greater than 2 can be expressed as the sum of two primes.</h2>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment