test.odin 358 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*#import "fmt.odin"
  2. thing :: proc() {
  3. fmt.println("Hello1!")
  4. }*/
  5. #import "fmt.odin" as format
  6. thing :: proc() {
  7. format.println("Hello2!")
  8. }
  9. /*#import "fmt.odin" as .
  10. thing :: proc() {
  11. println("Hello3!")
  12. }
  13. */
  14. /*#import "fmt.odin" as _
  15. thing :: proc() {
  16. // println("Hello4!")
  17. }
  18. */
  19. /*
  20. #load "fmt.odin"
  21. thing :: proc() {
  22. println("Hello5!")
  23. }*/