This repository has been archived on 2021-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
reemo-gasi/GASi/bin/Debug/test.gi
2021-09-20 03:05:36 +02:00

23 lines
509 B
Text

#include "test.gas"
float add(float a, float b) {
return a + b;
}
//this is a comment
void main() {
global float coolFloatDude = 20.30;
global int coolIntegerDude = 30;
coolFloatDude = add(coolFloatDude, coolFloatDude);
::
Function.Intrinsic.Math.Log(coolFloatDude,coolFloatDude)
Function.Intrinsic.Math.Exp(coolFloatDude,coolFloatDude)
Really.Long.Trash.Statement(coolFloatDude,coolFloatDude)
::
if(coolFloatDude <= coolIntegerDude) { //comment after the line ends
Msgbox.Show("Hi");
}
}