9 lines
119 B
Odin
9 lines
119 B
Odin
package tests
|
|
|
|
import "core:testing"
|
|
|
|
@(test)
|
|
foo :: proc(t: ^testing.T) {
|
|
testing.expect(t, 1 + 1 == 2, "pass")
|
|
}
|