User:LifeexplorerNoerrors
Appearance
Welcome!
[edit]About Me
[edit]LifeexplorerNoerrors contributes to Wikipedia. It is also interested in CGoL.
Userbox
[edit]This User Is Interested In Cgol. |
Template
[edit]Patterns
[edit]Spaceships
[edit]-
Glider.
-
Lightweight Spaceship
-
Middleweight Spaceship
-
Heavyweight Spaceship
-
Copperhead
-
2-Engine Cordership
Oscillators
[edit]Period 2
[edit]-
Blinker
-
Toad
Period 3
[edit]
Pulsar
[edit]Pulsar Is An Perios-3 Oscillator.
Period 15
[edit]-
Pentadecathlon
Still Lifes
[edit]-
Block
-
Beehive
-
Boat
-
Ship
-
Tub
-
Pond
Code Stuff
[edit]C++
[edit]#include <iostream>
int main()
{
std::cout << "Hello, World!\n";
}
C
[edit]#include <stdio.h>
int main(void)
{
printf("hello world\n");
}
C#
[edit]try
{
// something
}
catch (Exception ex)
{
// example
return 0
}
finally
{
return 1
}
Go
[edit]var shp Shape = Square{5}
square, ok := shp.(Square)
if ok {
fmt.Printf{"%#v\n", square)
} else {
fmt.Println("Can't Print shape as Square")
}
Java
[edit]public class Example {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
JavaScript
[edit]// consolelog.
console.log("hello world")
Pascal
[edit]program HelloWorld(output);
begin
WriteLn('Hello World')
end.
HTML
[edit]<!DOCTYPE html>
<html>
<head>
<title>CGoL</title>
<style>
p {
font-family: Sans-Serif;
}
</style>
</head>
<body>
<h1>Conway's Game of Life</h1>
<p>Conway's Game of Life Is A Celluar Automaton In 1970.</p>
<h2>Patterns</h2>
<h3>Still Lifes</h3>
<p>Still Lifes Are Patterns That Doesn't Change Untill Mutiple generations.</p>
<h3>Oscillators</h3>
<p>Oscillators Are Patterns That Oscillates At Period.</p>
<h3>Spaceships</h3>
<p>Spaceships Are Patterns That Moves At Ticks</p>
</body>
</html>
Bye
[edit]See You Next Time! Dont Delete It!