This file contains 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 filters | |
import ( | |
"time" | |
"github.com/Sirupsen/logrus" | |
"github.com/astaxie/beego" | |
"github.com/astaxie/beego/context" | |
uuid "github.com/hashicorp/go-uuid" | |
) |
This file contains 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
program Parcial; | |
uses sysutils; | |
const | |
valoralto = 9999; | |
type | |
producto = record | |
codigo : integer; | |
nombre : string[20]; | |
descripcion : string[40]; | |
precio : real; |
This file contains 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
Program ej2; | |
const | |
valoralto = 999999; | |
type | |
vivienda = record | |
codigo : integer; | |
precio : real; | |
habitaciones : integer; | |
descripcion : string[20]; | |
end; |
This file contains 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
Program ej8; | |
const | |
valoralto = 9999; | |
type | |
producto = record | |
codigo : integer; | |
nombre : string[20]; | |
precio : real; | |
stock : integer; | |
stockMinimo : integer; |
This file contains 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
Program ej2; | |
uses sysutils; | |
const | |
valoralto = 99999; | |
type | |
producto = record | |
codigo : integer; | |
nombre : string[20]; | |
descripcion : string[30]; | |
stock : integer; |
This file contains 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
Program ej1; | |
const | |
valoralto = 99999; | |
type | |
votos = array [0..4] of integer; | |
partido = record | |
codigo : integer; | |
nombre : string[20]; | |
codLocal : integer; | |
nombreLocal : string[20]; |
This file contains 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 ( | |
"context" | |
"fmt" | |
"net" | |
"os" | |
"github.com/matipan/qsy" | |
) |
This file contains 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
program ejercicio2; | |
const | |
valoralto = 9999; | |
type | |
viajeTipo = record | |
codViaje: integer; | |
nombre: string[20]; | |
desc: string[100]; | |
precio: real; | |
cantPasajes: integer; |
This file contains 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 ( | |
"bufio" | |
"fmt" | |
"log" | |
"net/http" | |
"net/url" | |
"os" | |
"strings" |
This file contains 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 ( | |
"fmt" | |
"log" | |
"time" | |
"gobot.io/x/gobot" | |
"gobot.io/x/gobot/drivers/gpio" | |
"gobot.io/x/gobot/platforms/firmata" |
NewerOlder