Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# --- Colores para la salida ---
GREEN='\033[0;32m'
BLUE='\033[0;34m'
NC='\033[0m' # No Color
echo -e "${BLUE}Iniciando configuración de entorno...${NC}"
# 1. Detección de Sistema Operativo
@danieldussan
danieldussan / Bienvenida.sol
Created January 30, 2022 03:15
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
pragma solidity >= 0.8.7;
contract Bienvenida{
constructor() public{
}
function getResult() public view returns(uint){
uint a = 13;
uint b = 22;
uint result = a + b;
return result;