MoonBit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "developers":[ | |
| { | |
| "nombre":"Horacio Juarez", | |
| "lenguajes": ["javascript","python", "php"], | |
| "idiomas":["inglés","español"], | |
| "habilidades":["oracle db","informix"], | |
| "pasatiempos":["lectura","fútbol"], | |
| "estudios":["UBAP"], | |
| "años":"3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main; | |
| import java.util.List; | |
| import java.util.ArrayList; | |
| import java.util.Map; | |
| import java.util.HashMap; | |
| import java.util.Scanner; | |
| public class TestFundamentos{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Main exposing (..) | |
| import Html exposing (Html, text) | |
| import String | |
| -- Tipo para el resultado | |
| type alias Resultado = | |
| { futuro : Float | |
| , extra : Float |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "calculos.hpp" | |
| double getIMC(double peso, double talla) | |
| { | |
| return peso / (talla * talla); | |
| } | |
| double getPulsaciones(int edad) | |
| { | |
| if (OPC_1 == 1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import "../saludo_project" | |
| main :: proc(){ | |
| get_saludo() | |
| nombre: string = "Fernando." | |
| get_saludo_nombre(nombre) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gcc main.c -o imc_calc.exe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.inforhomex.generador; | |
| /** | |
| * Generador de Excel | |
| * | |
| */ | |
| public class App | |
| { | |
| public static void main( String[] args ) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import ballerina/io; | |
| const MAX = 200; | |
| type Bailarin record{ | |
| string id?; | |
| int numero; | |
| boolean registrado; | |
| string nombre?; | |
| }; |
NewerOlder