Added in bitwise operators

This commit is contained in:
Nathan Braswell
2016-04-19 18:39:01 -04:00
parent e2ff94a90b
commit 8d0996fb47
7 changed files with 18 additions and 6 deletions

View File

@@ -6,3 +6,6 @@ We'll find out.
34
woo not
false
7
6
1

View File

@@ -20,4 +20,7 @@ fun main(): int {
if ( z > 20 && !boolean)
simple_print::println("woo not")
simple_print::println('b' == 'a')
println(3|5)
println(3^5)
println(3&5)
}