dashboard
repositories
filestore
activity
search
login
main
/
voidscript
A simple scripting language in C++
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
add function call
Ferenc Szontágh
2025-04-18
acb1c33ab258dc14dcc51b405b44cc5923b34324
[voidscript.git]
/
test_scripts
/
test2.vs
1
2
3
4
5
6
7
8
9
10
11
12
int $num = 123;
double $double = 12.3;
string $variable = "This is a string content with a number: 123";
string $variable2 = $variable;
function test = (int $i) {
int $result = $i + 1;
}
test(5);