testing all of this in python

This commit is contained in:
Andrew Segavac
2021-02-20 19:58:56 -07:00
parent 9db464a726
commit facead092f
6 changed files with 278 additions and 0 deletions

5
boring-test.bl Normal file
View File

@@ -0,0 +1,5 @@
fn add(a, b) { a + b }
fn subtract(a, b) { a - b }
fn main() {
add(10, subtract(9, 1))
}