binary expressions
This commit is contained in:
@@ -1,22 +1,7 @@
|
||||
import "c";
|
||||
|
||||
struct Human {
|
||||
age: int64 = 0;
|
||||
name: string;
|
||||
}
|
||||
|
||||
global func main() {
|
||||
while true {
|
||||
let dad = new Human
|
||||
{
|
||||
name = "John";
|
||||
};
|
||||
|
||||
printName(dad);
|
||||
if 3 / 3 == 1 {
|
||||
puts("uwu");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
func printName(human: Human) {
|
||||
puts(human.name);
|
||||
}
|
||||
Reference in New Issue
Block a user