Giter Club home page Giter Club logo

anchor's Introduction

struct Attributes;

impl Attributes {
    fn contact() -> (String, String, String) {
        let discord = String::from("Bond#8149");
        let email = String::from("[email protected]")

        (discord, email)
    }

    fn life() -> (Vec<String>, u32) {
        let langs = vec![
            String::from("Chinese"),
            String::from("English"),
        ];
        let age = 24;

        (langs, age)
    }

    fn coding() -> (Vec<(String, Vec<String>)>, Vec<String>, Vec<String>) {
        let mut langs = Vec::new();
        langs.push((String::from("expert"), vec![String::from("rust"), String::from("go"), String::from("move")]));
        langs.push((String::from("intermediate"), vec![String::from("typescript"), String::from("python")]));
        langs.push((
            String::from("learning"),
            vec![
                String::from("solidity"),
                String::from("c++"),
                String::from("c"),
            ],
        ));

        let specialities = vec![
            String::from("smart contract engineering"),
            String::from("fullstack engineering"),
        ];
        let environnement = vec![String::from("vscode")];

        (langs, specialities, environnement)
    }
}

anchor's People

Contributors

armaniferrante avatar arrowana avatar badass-commits avatar blasrodri avatar blockchainlover2019 avatar bonedaddy avatar callensm avatar cqfd avatar danmt avatar dependabot[bot] avatar dnut avatar fanatid avatar guanqun avatar h4rkl avatar henry-e avatar johndoe389 avatar johnrees avatar jon-chuang avatar kklas avatar macalinao avatar michaelhly avatar mschneider avatar norbertbodziony avatar paul-schaaf avatar schwarzbi3r avatar skrrb avatar suscd avatar thesoftwarejedi avatar tomlinton avatar u32luke avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.