Added Svelte (#736)

* Added Svelte

* Readd Inkling

Co-authored-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
Turbinya
2020-04-23 15:52:46 +03:00
committed by GitHub
parent c46bbf3c38
commit bc106f0254
2 changed files with 6 additions and 0 deletions

View File

@@ -574,6 +574,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Stylus](s/stylus.styl) * [Stylus](s/stylus.styl)
* [Subleq](s/subleq.sq) * [Subleq](s/subleq.sq)
* [Supercollider](s/supercollider.sc) * [Supercollider](s/supercollider.sc)
* [Svelte](s/svelte.svelte)
* [Svg](s/svg.svg) * [Svg](s/svg.svg)
* [Swift](s/swift.swift) * [Swift](s/swift.swift)
* [Systemtap](s/systemtap.stp) * [Systemtap](s/systemtap.stp)

5
s/svelte.svelte Normal file
View File

@@ -0,0 +1,5 @@
<script>
let message = 'Hello World';
</script>
<p>{ message }</p>