Skip to content

Instantly share code, notes, and snippets.

@hugofcampos
Last active August 24, 2022 21:27
Show Gist options
  • Save hugofcampos/58cba6fd7c3784201dd59f8b97eab431 to your computer and use it in GitHub Desktop.
Save hugofcampos/58cba6fd7c3784201dd59f8b97eab431 to your computer and use it in GitHub Desktop.
1o passo
import ballerina/http;
import ballerina/io;
public function main() returns error? {
http:Client github = check new ("https://api.github.com");
json user = check github->get("/users/defunkt");
io:println(user.public_repos);
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment