mirror of
https://github.com/guilhermewerner/language
synced 2025-06-15 04:34:19 +00:00
Create main.atk
This commit is contained in:
9
examples/main.atk
Normal file
9
examples/main.atk
Normal file
@ -0,0 +1,9 @@
|
||||
var a = 1;
|
||||
a = a + 1;
|
||||
|
||||
function add(a, b) {
|
||||
return a + b;
|
||||
}
|
||||
|
||||
const b = 2;
|
||||
const c = add(a, b);
|
Reference in New Issue
Block a user