/
githubmirror
/
CS-Notes
Обзор
Документация
Войти
/
githubmirror
/
CS-Notes
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/_style/prism-master/examples/prism-vala.html
33 строки
648 B
CyC2018
use prism-tomorrow.css
19 дек 2018, 09:09
19 дек 2018, 09:09
e9e604e
Код
Авторство
О чём код?
<h2>Comments</h2> <pre><code">// Single line comment /** Multi-line doc comment */</code></pre> <h2>Strings</h2> <pre><code">"foo \"bar\" baz" "Multi-line strings ending with a \ are supported too." """Verbatim strings You can create multi-line strings like this too.""" @"Template string with variables $var1 $(var2 * 2)"</code></pre> <h2>Regex</h2> <pre><code">/foo?[ ]*bar/</code></pre> <h2>Full example</h2> <pre><code">using Gtk; int main (string[] args) { Gtk.init(ref args); var window = new Window(); var button = new Button.with_label("Click me!"); window.add(button); window.show_all(); Gtk.main(); return 0; }</code></pre>