aboutsummaryrefslogtreecommitdiff
path: root/code/main.felan
blob: f420f64aca0ed39c6c58d958ba475262dd666a71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@import("basic.felan");

st :: struct {
};

__get_item__ :: (left:st,index:i64,index2:i64)->i64{
  return index+index2;
};

main :: () -> void {
  a := "abcdef";
  print(a);
};