1
1
mirror of https://github.com/mcuadros/ascode synced 2024-11-26 06:01:08 +01:00
ascode/_examples/runtime.star
2019-07-12 03:32:28 +02:00

7 lines
169 B
Plaintext

load("encoding/base64", "base64")
load("http", "http")
dec = base64.encode("ascode is amazing")
msg = http.get("https://httpbin.org/base64/%s" % dec)
print(msg.body())