Skip to content

Instantly share code, notes, and snippets.

View fhs's full-sized avatar

Fazlul Shahriar fhs

View GitHub Profile
@fhs
fhs / 1.cpp
Created October 20, 2011 01:35
quiz 1
#include <iostream>
using namespace std;
int
main(void)
{
for(int i = 0; i < 50; i++){
for(int j = 0; j < i+1; j++)
cout << "*";
package main
import "fmt"
type Sequencer interface {
Next() Sequencer
}
type Elem struct {
b int