summaryrefslogtreecommitdiff
path: root/test.lang
diff options
context:
space:
mode:
authorWormHeamer2025-08-10 23:05:24 -0400
committerWormHeamer2025-08-10 23:05:24 -0400
commit866d14b5150c356718916fe8b7cfac45aea283ce (patch)
tree955d069c8ff671a9d0c6de5f1e8ea8ec8de591c5 /test.lang
parent60aadb12969755727709bf293e140ef9d8301d43 (diff)
remove some debug printfs
Diffstat (limited to 'test.lang')
-rw-r--r--test.lang23
1 files changed, 13 insertions, 10 deletions
diff --git a/test.lang b/test.lang
index 4df4f82..b409560 100644
--- a/test.lang
+++ b/test.lang
@@ -1,12 +1,15 @@
-func main(a, b i64) i64 {
- let x i64, y bool
- if true {
- let t = a
- a := b
- b := t
- x := 3
- } else {
- //x := 2
+/*func main(a, b i64) i64 {
+ let x i64 = 0, y bool = true
+ if a <> 0 {
+ x := 1
}
- return x
+ return x + a
+}*/
+
+func one i64 {
+ return 1
+}
+
+func main(a, b i64) i64 {
+ return a & a & b & a & b & b & b
}