Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
10
Task/Base64-decode-data/V-(Vlang)/base64-decode-data.v
Normal file
10
Task/Base64-decode-data/V-(Vlang)/base64-decode-data.v
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import encoding.base64
|
||||
|
||||
fn main() {
|
||||
msg := "Rosetta Code Base64 decode data task"
|
||||
println("Original : $msg")
|
||||
encoded := base64.encode_str(msg)
|
||||
println("\nEncoded : $encoded")
|
||||
decoded := base64.decode_str(encoded)
|
||||
println("\nDecoded : $decoded")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue