mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Comments and GNOME link
This commit is contained in:
parent
b903cac07d
commit
e8897e60e0
25
vala.html.markdown
Normal file
25
vala.html.markdown
Normal file
@ -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
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user