Skip to content

Latest commit

 

History

History
64 lines (63 loc) · 1.24 KB

README.md

File metadata and controls

64 lines (63 loc) · 1.24 KB

christmas_tree

A small Fuzion example to draw a christmas tree

To build and run the code, make sure Fuzion's fz command is in the $PATH and perform

> make run
./tree
            #
           ###
          #####
         #######
        #*#######
       ###########
      #*###@###@###
     ###############
    #@###@#######*###
   ###################
  #@#######@###*#######
 #######################
#*###@###@#######@###@###
           ###
           ###
           ###
           ###

when you run the created binary manually, you can provide a size parameter:

> ./tree 6
      #
     ###
    #####
   #######
  #@###@###
 ###########
#@###@###@###
      #
      #
> ./tree 16
                #
               ###
              #@###
             #######
            #@#######
           ###########
          #@###@###@###
         ###############
        #*#######*###@###
       ###################
      #@###@###@#######@###
     #######################
    #*###@###@###@###@###@###
   ###########################
  #@#######*###@###@###@###@###
 ###############################
#@###*###@###@###@###@###@###@###
              #####
              #####
              #####
              #####
              #####
              #####

Have fun!