mirror of
https://github.com/vlang/v.git
synced 2025-08-04 10:17:22 -04:00
12 lines
117 B
V
12 lines
117 B
V
module main
|
|
|
|
import json
|
|
|
|
struct Test {
|
|
id ?string = none
|
|
}
|
|
|
|
fn test_main() {
|
|
assert json.encode(Test{}) == '{}'
|
|
}
|