diff options
author | Milo Gilad <milogaccnts@gmail.com> | 2017-08-23 18:52:53 -0400 |
---|---|---|
committer | Milo Gilad <milogaccnts@gmail.com> | 2017-08-23 18:52:53 -0400 |
commit | e8897e60e00425e59d705a320bac51dc561443aa (patch) | |
tree | 7848482fcd49b68e9ad6f77667494418dcdfb2a0 /vala.html.markdown | |
parent | b903cac07dc5afd5114d0c526a0a2fef4bac62f8 (diff) |
Comments and GNOME link
Diffstat (limited to 'vala.html.markdown')
-rw-r--r-- | vala.html.markdown | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vala.html.markdown b/vala.html.markdown new file mode 100644 index 00000000..9a5215bb --- /dev/null +++ b/vala.html.markdown @@ -0,0 +1,25 @@ +--- +language: vala +contributors: + - ["Milo Gilad", "https://github.com/bigbash"] +filename: LearnVala.vala +--- + +In GNOME's own words, "Vala is a programming language that aims to bring modern programming language features to GNOME developers without imposing any additional runtime requirements and without using a different ABI compared to applications and libraries written in C." + +Vala has aspects of Java and C#, so it'll be familiar to those who know either or. + +[Read more here.](https://wiki.gnome.org/Projects/Vala) + +```vala +// Single line comment + +/* Multiline +Comment */ + +/** +* Documentation comment +*/ + + +```
\ No newline at end of file |