genera un grid
<div class="container">
<div class="row">
<div class="col-md-4">1</div>
<div class="col-md-4">2</div>
<div class="col-md-4">3</div>
</div>
</div>
All generations.
<div class="container">
<div class="row">
<div class="col-md-4">1</div>
<div class="col-md-4">2</div>
<div class="col-md-4">3</div>
</div>
</div>
## Ejemplo de Listado
def greet(name):
print("Hola " + name + "!")
greet("Miriam")
Script
def hola_mundo(a, b):
print("Hola mundo")
typedef struct {
char *name;
int age;
int height;
int weight;
} Person;
Person *Person_create(char *name, int age, int height, int weight)
{
Person *who = malloc(sizeof(Person));
assert(who != NULL);
who->name = strdup(name);
who->age = age;
who->height = height;
who->weight = weight;
return who;
}
var numbers = new List<int> { 1, 2, 3, 4 };
std::list<Objeto*> objetos;
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
}
var peopleList = new List<Person>();
void main() {
print("Hola mundo");
}
def hola():
print("Hola mundo")
hola()
// create a list of objects
list := []int{1, 2, 3, 4, 5}
const list = [
{
title: "React",
url: "https://reactjs.org/",
author: "Jordan Walke",
num_comments: 3,
points: 4,
objectID: 0,
}
];
<form id="form" class="grid-6">
<div class="col">
<label for="nome">Nome:</label>
<input type="text" id="nome" name="nome" placeholder="Nome">
</div>
<div class="col">
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Email">
</div>
<div class="col">
<label for="nascimento">Nascimento:</label>
<input type="text" id="nascimento" name="nascimento" placeholder="Nascimento">
</div>
<div class="col">
<label for="telefone">Telefone:</label>
<input type="text" id="telefone" name="telefone" placeholder="Telefone">
</div>
</form>
function greet (name: string): string {
return `Hello, ${name}`
}
greet('Alice') // returns 'Hello, Alice'
Generate
More than just a code generator. A tool that helps you with a wide range of tasks. All in one place.
Function from Description
Text Description to SQL Command
Translate Languages
Generate HTML from Description
Code to Explanation
Fix invalid Code
Get Test for Code
Class from Description
Regex from Description
Regex to Explanation
Git Command from Description
Linux Command
Function from Docstring
Add typing to code
Get Language from Code
Time complexity
CSS from Description
Meta Tags from Description