Building interactive web applications
- c
- java
- js
// about.c | 1qve// this site: hand built, no frameworks, no dependencies#include <cs50.h>#include <stdio.h> int main(void){ string name = "shawn"; string based = "new york"; string stack[] = {"c", "java", "js"}; string email = "[email protected]"; bool available = true; if (available) { printf("email me: %s\n", email); } else { string when = get_string("when will you be available for work?"); }}// this code does not actually work like this