# Default <<>>= using Gadfly x = 1:10 plot(x = x, y = x) print(x) plot(x = x, y = x) display(x) @ # Terminal <>= using Gadfly x = 1:10 plot(x = x, y = x) print(x) plot(x = x, y = x) display(x) @ # Prompt <>= using Gadfly x = 1:10 plot(x = x, y = x) print(x) plot(x = x, y = x) display(x) @ # Display <>= using Gadfly x = 1:10 plot(x = x, y = x) print(x) plot(x = x, y = x) display(x) @ # Both display and term <>= using Gadfly x = 1:10 plot(x = x, y = x) print(x) plot(x = x, y = x) display(x) @ # Hold results <>= using Gadfly x = 1:10 plot(x = x, y = x) print(x) plot(x = x, y = x) display(x) @