Skip to content

Instantly share code, notes, and snippets.

@saayv1
Created February 13, 2023 08:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saayv1/8eae483e6d4be2763bf1642ce4ac7523 to your computer and use it in GitHub Desktop.
Save saayv1/8eae483e6d4be2763bf1642ce4ac7523 to your computer and use it in GitHub Desktop.
Vyaas's solution to Cassidoo's interview question of the week of Feb 13 2023
/*
* Cassidoo's interview question of the week of Feb 13 2023
*
* Author: Vyaas
*/
package main
import "fmt"
func main() {
d := 'd'
//ascii value of d is a hundred
hundred := int(d)
for i := 0; i <= hundred; i++ {
fmt.Println(i)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment