/* Float Test */
Func Float testFunc(){
3.0 + 4.0;
}

Float val;

val = testFunc();

Print(val);
