Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Latest commit

 

History

History
19 lines (15 loc) · 358 Bytes

code_command.md

File metadata and controls

19 lines (15 loc) · 358 Bytes

e.GPT :: Examples :: Generate code

Generates code from human language.

egpt code "i need a Fibonacci function" --language="typescript"

Possible response:

function fibonacci(n: number): number {
  if (n <= 1) {
    return n;
  } else {
    return fibonacci(n - 1) + fibonacci(n - 2);
  }
}