mirror of
https://github.com/mii443/encrypt.git
synced 2025-08-22 15:05:33 +00:00
add config file compression
This commit is contained in:
15
client2.gpsl
Normal file
15
client2.gpsl
Normal file
@ -0,0 +1,15 @@
|
||||
fn main() {
|
||||
let a = encrypt(16)
|
||||
println("a: " + decrypt(a))
|
||||
let b = encrypt(60)
|
||||
println("b: " + b)
|
||||
let c = encrypt(48)
|
||||
println("c: " + c)
|
||||
let d = encrypt(2)
|
||||
println("d: " + d)
|
||||
let e = encrypt(24)
|
||||
println("e: " + e)
|
||||
let r = a + b + c + d + e
|
||||
println("r: " + decrypt(r));
|
||||
println(decrypt(r) - 15)
|
||||
}
|
Reference in New Issue
Block a user