Live data from Hacker News

Show HN: Worst programming language written in less than an hour

neord.netlify.app

1–10 of 11 posts

Re: Show HN: Worst programming language written in less than an hour

#4
This is fun, thanks for sharing! I'm currently developing a much worse language and I've spent quite a few hours on it. I think that the space of simple languages is very enlightening to explore. If nothing else, returning to a full-featured language after spending days programming in something horrid is a breath of fresh air.

Re: Show HN: Worst programming language written in less than an hour

#5
Thanks for sharing. I had a good laugh looking through your source and seeing that "kys" killed the interpreter. I threw together a trivial fizzbuzz in it for fun.

  n = 1
  goto main
  #fizzbuzz
  if n % 3 == 0 && n % 5 == 0
      print "fizzbuzz"
      goto increment
  if n % 3 == 0
      print "fizz"
      goto increment
  if n % 5 == 0
    print "buzz"
    goto increment
  print n
  #increment
  n = n + 1
  #main
  if n 

Re: Show HN: Worst programming language written in less than an hour

#8

Thanks for sharing. I had a good laugh looking through your source and seeing that "kys" killed the interpreter. I threw together a trivial fizzbuzz in it for fun. n = 1 goto main #fizzbuzz if n % 3 == 0 && n % 5 == 0 print "fizzbuzz" goto increment if n % 3 == 0 print "fizz" goto increment if n % 5 == 0 print "buzz" goto increment print n #increment n = n + 1 #main if n

Thanks really cool. When I'm gonna add examples I will include this one too

Re: Show HN: Worst programming language written in less than an hour

#9
post #4

This is fun, thanks for sharing! I'm currently developing a much worse language and I've spent quite a few hours on it. I think that the space of simple languages is very enlightening to explore. If nothing else, returning to a full-featured language after spending days programming in something horrid is a breath of fresh air.

I'm looking into it
Post reply on HN