mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
6 lines
143 B
Go
6 lines
143 B
Go
|
import encoding.base64
|
||
|
|
||
|
pub fn test_submodules() {
|
||
|
assert base64.decode('c3VibW9kdWxlcyBhcmUgd29ya2luZyE=') == 'submodules are working!'
|
||
|
}
|