Skip to content
View joapedroo's full-sized avatar
:electron:
:electron:

Block or report joapedroo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
joapedroo/README.md
namespace HelloQSharp {
    open Microsoft.Quantum.Intrinsic;
    open Microsoft.Quantum.Canon;

    operation WelcomeMessage() : Unit {
        Message("Seja bem vindo ao meu perfil!");
    }

    @EntryPoint()
    operation Main() : Unit {
        WelcomeMessage();
    }
}
namespace PessoaExample {
    open Microsoft.Quantum.Canon;
    open Microsoft.Quantum.Intrinsic;

    newtype Pessoa = (Nome : String, Idade : Int, Formacao : String, CursandoFacu : Bool, CursandoBoot : Bool);

    operation GetNome(pessoa : Pessoa) : String {
        body {
            let (nome, _, _, _, _) = pessoa;
            return nome;
        }
    }

    operation GetIdade(pessoa : Pessoa) : Int {
        body {
            let (_, idade, _, _, _) = pessoa;
            return idade;
        }
    }

    operation GetFormacao(pessoa : Pessoa) : String {
        body {
            let (_, _, formacao, _, _) = pessoa;
            return formacao;
        }
    }

    @EntryPoint()
    operation Main() : Unit {
        body {
            // Criando uma instância de Pessoa
            let pessoa = Pessoa("João", 25, "Cyber Security", false, false);

            // Usando as operações para obter informações
            Message("Nome: " + GetNome(pessoa));
            Message("Idade: " + IntAsString(GetIdade(pessoa)));
            Message("Formacao: " + GetFormacao(pessoa));
        }
    }
}


♦ STATISTICS ♦


♦ IDE | TOOL | SO ♦

João-vscode João-Docker João-Debian João-Raspberrypi João-Linux João-Win

Snake animation

Popular repositories Loading

  1. joapedroo joapedroo Public

    README

    1

  2. Parsing-html Parsing-html Public

    Extrair link do index.html

    Shell

  3. Ramsonware Ramsonware Public

    Versão simples do código original.

    C++