Skip to content
View SamChou19815's full-sized avatar
:octocat:
:octocat:

Organizations

@react @flow

Block or report SamChou19815

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
SamChou19815/README.md

Developer Sam

/**
 * Copyright (C) 2015-2026 Developer Sam.
 * @demo https://samlang.io/demo
 * @github https://github.com/SamChou19815
 * @bsky https://bsky.app/profile/developersam.com
 * @resume https://developersam.com/resume.pdf
 */

import {List} from std.list;

class Developer(
  val github: Str,
  val projects: List<Str>,
) {
  function sam(): Developer = {
    let github = "SamChou19815";
    let projects = List
      .of("samlang")
      .cons("website")
      .cons("...");
    Developer.init(github, projects)
  }
}

class Main {
  function main(): Developer = Developer.sam()
}

Best viewed on developersam.com.

Pinned Loading

  1. samlang samlang Public

    Sam's Programming Language

    Rust 40 3

  2. facebook/docusaurus facebook/docusaurus Public

    Easy to maintain open source documentation websites.

    TypeScript 65.5k 10k

  3. facebook/flow facebook/flow Public

    Adds static typing to JavaScript to improve developer productivity and code quality.

    Rust 22.3k 1.9k

  4. cornell-dti/course-plan cornell-dti/course-plan Public

    courseplan.io is a web app built in Vue.js to allow Cornell students to plan out their 4-year course schedule and track their college, major, and minor requirements.

    TypeScript 48 15

  5. SamChou19815 SamChou19815 Public

    A monorepo of Sam's smaller projects

    MDX 3

  6. mini-react mini-react Public archive

    Sam's Implementation of a simplified React for educational purpose.

    TypeScript 23