mirror of
https://github.com/sbrow/thor.git
synced 2026-08-26 11:23:32 -04:00
10 lines
114 B
Odin
10 lines
114 B
Odin
#+test
|
|
package main
|
|
|
|
import "core:testing"
|
|
|
|
@(test)
|
|
test_true :: proc(t: ^testing.T) {
|
|
testing.expect(t, true)
|
|
}
|